Skip to content

Commit

Permalink
Set up go in each step
Browse files Browse the repository at this point in the history
  • Loading branch information
dtaniwaki committed Feb 27, 2022
1 parent 482fd87 commit 669cf7e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yaml
Expand Up @@ -8,7 +8,6 @@ jobs:
uses: actions/setup-go@v2
with:
go-version: ^1.16
id: go
- name: check out
uses: actions/checkout@v2
- name: before cache
Expand All @@ -25,6 +24,10 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: set up
uses: actions/setup-go@v2
with:
go-version: ^1.16
- uses: actions/checkout@v2
- name: build
run: make build
Expand All @@ -41,6 +44,10 @@ jobs:
needs: setup
runs-on: ubuntu-latest
steps:
- name: set up
uses: actions/setup-go@v2
with:
go-version: ^1.16
- uses: actions/checkout@v2
- name: test
run: make test
Expand Down

0 comments on commit 669cf7e

Please sign in to comment.