Skip to content

Commit

Permalink
fix(ci): Fix golang setup error in coverage workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gansheer authored and squakez committed Oct 24, 2023
1 parent 64d37a4 commit eb5607f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@ jobs:

steps:

- name: Setup go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
check-latest: true

- name: Prepare repo configuration
shell: bash
env:
Expand All @@ -63,6 +57,12 @@ jobs:
run: |
git pull --rebase upstream ${{ github.event.pull_request.base.ref }} && echo "rebaseAborted=0" >> $GITHUB_ENV || echo "rebaseAborted=1" >> $GITHUB_ENV
- name: Setup go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
check-latest: true

- name: Get New Coverage
shell: bash
working-directory: ./${{ github.event.pull_request.head.repo.name }}
Expand Down

0 comments on commit eb5607f

Please sign in to comment.