Skip to content

Commit

Permalink
ci: add test on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Warashi committed Jun 17, 2023
1 parent 319c791 commit 511e46a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 'stable'
check-latest: true
- name: Test compgen
run: go test ./...
- name: Test relaycompmul
working-directory: ./linter/relaycompmul
run: go test ./...

0 comments on commit 511e46a

Please sign in to comment.