Merge pull request #67 from wneessen/codecov-versionfix

Fix codecov Go version setup
This commit is contained in:
Winni Neessen 2022-10-18 16:49:18 +02:00 committed by GitHub
commit ff6a6a5f85
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

@ -37,16 +37,17 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@master
- name: Setup go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Install sendmail
if: matrix.go == 1.19 && matrix.os == 'ubuntu-latest'
run: |
sudo apt-get -y install sendmail; which sendmail
- name: Run Tests
run: |
go test -v -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
- name: Upload coverage to Codecov
if: success() && matrix.go == 1.19 && matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v2

View file

@ -27,7 +27,7 @@ jobs:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v2.1.3
uses: actions/setup-go@v3
with:
go-version: 1.18.x