Skip to content

Commit

Permalink
switched to actions/setup-go@v2 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
vtopc authored Feb 3, 2021
1 parent ac3752b commit 3a2bbae
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,17 @@ jobs:
name: unit-tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Test
uses: cedrickring/golang-action/[email protected]
- name: Checkout
uses: actions/checkout@master

- name: Set up Go
uses: actions/setup-go@v2
with:
args: make test
go-version: 1.14

- name: Test
run: make test

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
Expand Down

0 comments on commit 3a2bbae

Please sign in to comment.