Skip to content

Commit

Permalink
Added checkout action after setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aashish committed Oct 20, 2023
1 parent c7010bf commit 48e431c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,18 @@ jobs:
matrix:
go: [ '1.21', '1.20', '1.19', '1.18', '1.17' ]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- uses: actions/checkout@v3
with:
fetch-depth: 0
path: ${{ env.WORKDIR }}
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
cache: false
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
path: ${{ env.WORKDIR }}

- name: golangci-lint
uses: golangci/golangci-lint-action@v3
Expand Down

0 comments on commit 48e431c

Please sign in to comment.