Skip to content

Commit

Permalink
add verify to gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jshawl committed Feb 3, 2024
1 parent 18c4f04 commit c66e1c8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ jobs:
run: bundle exec rubocop
- name: Run tests
run: bundle exec rspec
- name: Test against jedisct1/minisign
run: ./spec/verify.sh
12 changes: 12 additions & 0 deletions spec/verify.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/bash

echo "which curl: $(which curl)"
echo "which unzip: $(which unzip)"
echo "which wget: $(which wget)"
echo "OSTYPE: $OSTYPE"

if [[ "$OSTYPE" == "darwin"* ]]; then
echo "mac"
else
echo "linux"
fi

0 comments on commit c66e1c8

Please sign in to comment.