Skip to content

Commit

Permalink
*: Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
diamondburned committed Jan 31, 2023
1 parent f910c78 commit 6b02d20
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Test

on:
push:
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Install Nix packages
uses: diamondburned/cache-install@0746911c01dc84bba95d35be82db09435537d8ca

- name: Generate
run: |
go generate ./...
if ! git diff --exit-code; then
echo '::error::Repository differ after `go generate`.'
exit 1
fi
- name: Build
run: |
go build ./...
- name: Test
run: |
go test -coverprofile /tmp/coverage.out -race ./...
go tool cover -func /tmp/coverage.out
env:
BOT_TOKEN: ${{ secrets.BOT_TOKEN }}

- name: Upload coverage profile
uses: actions/upload-artifact@v3
with:
name: coverage
path: /tmp/coverage.out

0 comments on commit 6b02d20

Please sign in to comment.