mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-13 07:27:43 +00:00
fix workflow for real this time
This commit is contained in:
parent
da230b3110
commit
b43f9ec8ed
1 changed files with 11 additions and 10 deletions
21
.github/workflows/test.yml
vendored
21
.github/workflows/test.yml
vendored
|
@ -3,15 +3,16 @@ name: Unit Tests
|
|||
jobs:
|
||||
test:
|
||||
name: "go ${{ matrix.go-version }} (${{ matrix.platform }})"
|
||||
matrix:
|
||||
go-version: [1.16.5]
|
||||
platform: [ubuntu-latest]
|
||||
strategy:
|
||||
matrix:
|
||||
go-version: [1.16.5]
|
||||
platform: [ubuntu-latest]
|
||||
runs-on: ${{ matrix.platform }}
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ${{ matrix.go-version }}
|
||||
- name: Test
|
||||
run: go test ./...
|
||||
- uses: actions/checkout@v2
|
||||
- name: Setup Go
|
||||
uses: actions/setup-go@v2
|
||||
with:
|
||||
go-version: ${{ matrix.go-version }}
|
||||
- name: Test
|
||||
run: go test ./...
|
||||
|
|
Loading…
Reference in a new issue