1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-11-01 04:24:19 +00:00
arikawa/.github/workflows/test.yml
2023-11-04 01:44:16 -07:00

44 lines
973 B
YAML

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@main
- 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 }}
CHANNEL_ID: ${{ secrets.CHANNEL_ID }}
GUILD_ID: ${{ secrets.GUILD_ID }}
VOICE_ID: ${{ secrets.VOICE_ID }}
- name: Upload coverage profile
uses: actions/upload-artifact@v3
with:
name: coverage
path: /tmp/coverage.out