Skip to content

Commit

Permalink
add test step to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
prnvbn committed Sep 14, 2024
1 parent fe7bd72 commit 1e57bcb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/prcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,14 @@ jobs:
version: latest
args: --timeout=2m --verbose


test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "stable"
- name: Run tests
run: go test -v ./...

0 comments on commit 1e57bcb

Please sign in to comment.