Skip to content

Commit

Permalink
add Github Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
guregu committed Feb 11, 2024
1 parent 329942b commit 7d9fc9f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Deploy

on: [push, pull_request]

jobs:
spin:
runs-on: ubuntu-latest
name: Test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- run: go test -v -race -coverpkg=./... ./...
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
coverage.out
cover*.out
.idea/
.DS_Store

0 comments on commit 7d9fc9f

Please sign in to comment.