Skip to content

Commit

Permalink
Separate build and test jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
kkoutsilis committed Dec 27, 2023
1 parent 0280895 commit d67a409
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,17 @@ jobs:
go get .
- name: Build
run: go build -v ./...
test:
runs-on: ubuntu-latest
steps:
uses: actions/checkout@v4
- name: Setup Go 1.21.x
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install Dependencies
run: |
go get .
- name: Test
run: go test -v ./...

0 comments on commit d67a409

Please sign in to comment.