Skip to content

Commit

Permalink
working on github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianrudnik committed Jul 6, 2021
1 parent 3be8193 commit 87338db
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,20 @@ jobs:
version: latest

test:
strategy:
matrix:
go-version: [1.16.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- if: success()
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v2
- run: go test -v

coverage:
strategy:
matrix:
go-version: [1.16.x]
Expand Down

0 comments on commit 87338db

Please sign in to comment.