apollo-backend/.github/workflows/test.yml

21 lines
508 B
YAML
Raw Normal View History

2021-07-14 19:22:49 +00:00
on: [push, pull_request]
name: Unit Tests
jobs:
test:
2021-07-14 19:25:26 +00:00
name: "go ${{ matrix.go-version }} (${{ matrix.platform }})"
2021-07-14 19:26:51 +00:00
strategy:
matrix:
go-version: [1.16.5]
platform: [ubuntu-latest]
2021-07-14 19:25:26 +00:00
runs-on: ${{ matrix.platform }}
2021-07-14 19:22:49 +00:00
steps:
2021-07-14 19:26:51 +00:00
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
2021-07-24 19:44:26 +00:00
- name: Lint
uses: golangci/golangci-lint-action@v2
2021-07-14 19:26:51 +00:00
- name: Test
2021-07-14 19:28:56 +00:00
run: go test ./... -v