moth/.github/workflows/build+test.yml

18 lines
301 B
YAML
Raw Normal View History

2021-10-20 11:43:48 -06:00
name: Test
2020-09-17 18:56:40 -06:00
jobs:
test-mothd:
name: Test mothd
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
2021-10-20 11:43:48 -06:00
go-version: 1.17
2020-09-18 14:41:41 -06:00
2020-09-17 18:56:40 -06:00
- name: Retrieve code
2020-09-18 14:41:41 -06:00
uses: actions/checkout@v2
2020-09-17 18:56:40 -06:00
- name: Test
run: go test ./...