Skip to content

Commit

Permalink
tidy up github action workflow for backend tests to resolve wrong gol…
Browse files Browse the repository at this point in the history
…ang version during tests (#32)
  • Loading branch information
mafolz authored Sep 14, 2023
1 parent 3abe97e commit 31cc4a7
Showing 1 changed file with 5 additions and 14 deletions.
19 changes: 5 additions & 14 deletions .github/workflows/backend_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,12 @@ jobs:
test_suite:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.21.0'

- uses: actions/checkout@v2

- uses: actions/cache@v3
with:
path: |
./cache
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
cache-dependency-path: |
src/jetstream/go.sum
- name: Run tests
run: PATH=$GOPATH/bin:$PATH build/bk-build.sh test
run: build/bk-build.sh test

0 comments on commit 31cc4a7

Please sign in to comment.