Skip to content

Commit

Permalink
update the example in README
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 committed Mar 19, 2022
1 parent fd60afb commit 5cb4f62
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ Add the following step snippet to your workflows.

```yaml
- uses: actions/checkout@v3

- uses: actions/setup-go@v3
with:
go-version: '1.18'
- run: go test -v -coverprofile=profile.cov ./...

- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov
Expand All @@ -32,10 +38,18 @@ jobs:
strategy:
fail-fast: false
matrix:
go: ['1.11', '1.12', '1.13', '1.14', '1.15']
go:
- '1.18'
- '1.17'
- '1.16'
- '1.15'
- '1.14'
- '1.13'
- '1.12'
- '1.11'

steps:
- uses: actions/setup-go@v1
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v3
Expand Down

0 comments on commit 5cb4f62

Please sign in to comment.