Skip to content

Commit

Permalink
ci: Run tests on push (#2)
Browse files Browse the repository at this point in the history
* ci: Run tests on push

* Update .github/workflows/ci.yml

Co-authored-by: Scott Robinson <[email protected]>
  • Loading branch information
boblail and quad authored Dec 29, 2022
1 parent e2df45e commit f306615
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on: push

name: CI
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

- name: Test
run: go test -v

0 comments on commit f306615

Please sign in to comment.