fix(deps): update github.com/magefile/mage digest to bdc92f6 in go.mod #3557
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: Regression Tests | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "**/*.md" | |
- "LICENSE" | |
pull_request: | |
paths-ignore: | |
- "**/*.md" | |
- "LICENSE" | |
jobs: | |
# Generate matrix of tags for all permutations of the tests | |
generate-matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
tags: ${{ steps.generate.outputs.tags }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Generate tag combinations | |
id: generate | |
run: | | |
go run mage.go tagsmatrix > tags.json | |
echo "::set-output name=tags::$(cat tags.json)" | |
shell: bash | |
test: | |
needs: generate-matrix | |
strategy: | |
matrix: | |
go-version: [1.22.x, 1.23.x] | |
os: [ubuntu-latest] | |
build-flag: ${{ fromJson(needs.generate-matrix.outputs.tags) }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Install Go | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
cache: true | |
- name: Tests and coverage | |
run: | | |
export BUILD_TAGS=${{ matrix.build-flag }} | |
go run mage.go coverage | |
- name: "Codecov: General" | |
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5 | |
if: ${{ matrix.go-version == '1.22.x' }} | |
with: | |
files: build/coverage.txt | |
flags: default,${{ matrix.build-flag }} | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: "Codecov: Examples" | |
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5 | |
if: ${{ matrix.go-version == '1.22.x' }} | |
with: | |
files: build/coverage-examples.txt | |
flags: examples+${{ matrix.build-flag }} | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: "Codecov: FTW" | |
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5 | |
if: ${{ matrix.go-version == '1.22.x' }} | |
with: | |
files: build/coverage-ftw.txt | |
flags: ftw,${{ matrix.build-flag }} | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: "Codecov: Tinygo" | |
uses: codecov/codecov-action@015f24e6818733317a2da2edd6290ab26238649a # v5 | |
# only if coverage-tinygo.txt exists | |
if: ${{ matrix.go-version == '1.22.x' && hashFiles('build/coverage-tinygo.txt') != '' }} | |
with: | |
files: build/coverage-tinygo.txt | |
flags: tinygo,${{ matrix.build-flag }} | |
token: ${{ secrets.CODECOV_TOKEN }} |