chore(deps): bump actions/upload-artifact from 3.1.2 to 3.1.3 #153
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- master | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v4.1.0 | |
with: | |
go-version: 1.17 | |
- name: Get Go environment | |
id: go-env | |
run: | | |
echo "::set-output name=cache::$(go env GOCACHE)" | |
echo "::set-output name=modcache::$(go env GOMODCACHE)" | |
- name: Set up cache | |
uses: actions/cache@v3.3.1 | |
with: | |
path: | | |
${{ steps.go-env.outputs.cache }} | |
${{ steps.go-env.outputs.modcache }} | |
key: test-${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
test-${{ runner.os }}-go- | |
- name: Download dependencies | |
run: go mod download && go mod tidy | |
- name: Run tests with coverage | |
run: go test -v -coverpkg=./... -coverprofile=profile.out ./... | |
- name: Extract cover profile | |
run: go tool cover -func profile.out | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3.1.3 | |
with: | |
name: coverage | |
path: profile.out | |
if-no-files-found: error | |
retention-days: 1 | |
upload: | |
runs-on: ubuntu-latest | |
needs: | |
- test | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: coverage | |
- name: Send coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
file: profile.out |