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

18 lines
437 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:22:49 +00:00
matrix:
go-version: [1.16.5]
2021-07-14 19:25:26 +00:00
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
2021-07-14 19:22:49 +00:00
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test ./...