chore(deps): update actions/setup-go digest to 3041bf5 in .github/workflows/tinygo.yml #3577
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@3041bf56c941b39c61721a86cd11f3bb1338122a # 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@7f8b4b4bde536c465e797be725718b88c5d95e0e # 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@7f8b4b4bde536c465e797be725718b88c5d95e0e # 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@7f8b4b4bde536c465e797be725718b88c5d95e0e # 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@7f8b4b4bde536c465e797be725718b88c5d95e0e # 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 }} |