Skip to content

Commit

Permalink
use sh instead of bash
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkroh committed Mar 14, 2024
1 parent 1a9883b commit 2475690
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/scripts/test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/usr/bin/env sh
set -euxo pipefail

go install gotest.tools/gotestsum@latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ jobs:

test-freebsd:
runs-on: ubuntu-latest
env:
GO_VERSION: 1.22.1
name: test (1.22.1, freebsd-14.0, cgo)
steps:
- uses: actions/checkout@v4

Expand All @@ -109,7 +112,7 @@ jobs:
pkg install -y curl
curl -sL -o /usr/bin/gvm https://github.com/andrewkroh/gvm/releases/download/v0.5.2/gvm-freebsd-amd64
chmod +x /usr/bin/gvm
eval "$(gvm 1.22.1)"
eval "$(gvm ${GO_VERSION})"
go version
run: |
Expand Down

0 comments on commit 2475690

Please sign in to comment.