Skip to content

Commit

Permalink
ci: Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TwiN committed Nov 15, 2022
1 parent d0ccb24 commit ca3792d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: test
on:
pull_request:
paths-ignore:
- '*.md'
push:
branches:
- master
paths-ignore:
- '*.md'
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.19
- uses: actions/checkout@v3
- run: go test ./... -cover

0 comments on commit ca3792d

Please sign in to comment.