advent-of-code/.github/workflows/workflow.yaml

15 lines
197 B
YAML
Raw Normal View History

---
name: test
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
- uses: actions/checkout@v3
- run: go test -v ./...