Skip to content

Commit

Permalink
Fix path.
Browse files Browse the repository at this point in the history
  • Loading branch information
loosla committed Jun 15, 2024
1 parent a460b7c commit 0fd12b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
with:
path: |
~/.cache/go-build
~/go/pkg/mod
~/backend/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Install dependencies
run: go mod tidy
run: cd ~/backend; go mod tidy

- name: Run tests
run: go test -v ./...
run: cd ~backend; go test -v ./...

0 comments on commit 0fd12b2

Please sign in to comment.