Merge pull request #426 from maximbaz/ci

Run tests via Github Actions
This commit is contained in:
Zack 2021-10-04 07:26:53 -07:00 committed by GitHub
commit f99c33d794
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

14
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: go test ./...