Skip to content

Commit

Permalink
fix: update .github/workflows/go.yml to build and test from src direc…
Browse files Browse the repository at this point in the history
…tory
  • Loading branch information
gmonarque committed Oct 19, 2024
1 parent 6acdbd5 commit dc88fa5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ jobs:
go-version: 1.19

- name: Build
run: go build -v ./src/
run: |
cd src
go build -v ./...
- name: Test
run: go test -v ./src/
run: |
cd src
go test -v ./...

0 comments on commit dc88fa5

Please sign in to comment.