fix workflow for real this time

This commit is contained in:
Andre Medeiros 2021-07-14 15:26:51 -04:00
parent da230b3110
commit b43f9ec8ed

View file

@ -3,15 +3,16 @@ name: Unit Tests
jobs: jobs:
test: test:
name: "go ${{ matrix.go-version }} (${{ matrix.platform }})" name: "go ${{ matrix.go-version }} (${{ matrix.platform }})"
matrix: strategy:
go-version: [1.16.5] matrix:
platform: [ubuntu-latest] go-version: [1.16.5]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }} runs-on: ${{ matrix.platform }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Setup Go - name: Setup Go
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: ${{ matrix.go-version }} go-version: ${{ matrix.go-version }}
- name: Test - name: Test
run: go test ./... run: go test ./...