Files
speedrun/.github/workflows/go.yml
2022-01-12 08:59:28 +01:00

23 lines
333 B
YAML

name: Go
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...