Skip to content

Commit

Permalink
test: Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Callisto13 committed Nov 25, 2022
1 parent 311b78c commit 8f349ce
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: run tests

on: [pull_request, workflow_dispatch]

jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.19'
- name: Build
run: make build
- name: Test
run: make test

0 comments on commit 8f349ce

Please sign in to comment.