diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f7d6ead..6ab6d05 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 ./...