ci: always run Go coverage #159
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: go | |
on: [push, pull_request] | |
jobs: | |
# Adapted from https://github.com/marketplace/actions/skip-duplicate-actions | |
pre_job: | |
continue-on-error: true | |
runs-on: ubuntu-latest | |
# Map a step output to a job output | |
outputs: | |
should_skip: ${{ steps.skip_check.outputs.should_skip }} | |
steps: | |
- id: skip_check | |
uses: fkirc/skip-duplicate-actions@v5 | |
with: | |
# https://github.com/marketplace/actions/skip-duplicate-actions#skip-concurrent-workflow-runs | |
concurrent_skipping: "same_content_newer" | |
# https://github.com/marketplace/actions/skip-duplicate-actions#cancel_others | |
# Don't cancel other jobs, they might be pushes to master | |
cancel_others: false | |
# https://github.com/marketplace/actions/skip-duplicate-actions#do_not_skip | |
do_not_skip: '["workflow_dispatch", "schedule", "merge_group", "release"]' | |
# https://github.com/marketplace/actions/skip-duplicate-actions#paths | |
paths: '["go.*", "*.go", "cmd/**", "Cargo.*", "pyproject.toml", "python/**", "rust/**"]' | |
lint: | |
needs: pre_job | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "stable" | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: "v1.60" | |
test: | |
needs: pre_job | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
go: stable | |
codecov: true | |
- os: macos-latest | |
go: stable | |
- os: windows-latest | |
go: stable | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' || matrix.codecov == 'true' }} | |
- name: Set up Go | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' || matrix.codecov == 'true' }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Run tests and generate coverage data | |
if: ${{ needs.pre_job.outputs.should_skip != 'true' || matrix.codecov == 'true' }} | |
run: | | |
make test-go-coverage | |
env: | |
GO111MODULE: "auto" | |
- name: Upload coverage to CodeCov | |
if: ${{ matrix.codecov == 'true' }} | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |