ci: use modded setup-python #448
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: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
permissions: read-all | |
jobs: | |
build-ui: | |
name: Build Web UI | |
permissions: | |
contents: write | |
uses: ./.github/workflows/build-webui.yml | |
secrets: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
tests: | |
name: Tests | |
needs: build-ui | |
permissions: | |
contents: write | |
checks: write | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-13, macos-14 ] | |
test: [ unit, integration-example, integration-real ] | |
include: | |
- test: unit | |
test_type: unit | |
- test: integration-example | |
test_type: integration | |
- test: integration-real | |
test_type: integration | |
fail-fast: false | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 | |
with: | |
go-version-file: "go.mod" | |
cache: true | |
check-latest: true | |
- name: Setup Go global dependencies | |
run: | | |
go install github.com/jstemmer/go-junit-report/v2@85bf4716ac1f025f2925510a9f5e9f5bb347c009 | |
go install github.com/Zxilly/go_js_wasm_exec@c8548ea8ad1d9748143c495f05f59ff0b4c94822 | |
- name: Download UI file | |
uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7 | |
with: | |
name: ui | |
path: internal/webui | |
- name: Download deps | |
run: go mod download | |
- name: Collect profiles | |
uses: ./.github/actions/setup-script | |
with: | |
cache: 'integration-real' | |
script: 'tests.py --${{ matrix.test }}' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload coverage | |
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0 | |
if: ${{ !cancelled() }} | |
with: | |
disable_search: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ${{ matrix.test_type }}.profile | |
flags: ${{ matrix.test_type }} | |
verbose: true | |
- name: Upload test results to Codecov | |
if: ${{ !cancelled() && matrix.test_type == 'unit' }} | |
uses: codecov/test-results-action@1b5b448b98e58ba90d1a1a1d9fcb72ca2263be46 # v1.0.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
name: ${{ matrix.os }} unit tests | |
flags: ${{ matrix.os }}-unit | |
files: unit.xml,unit_embed.xml,unit_wasm.xml | |
verbose: true | |
- name: Upload results | |
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | |
if: ${{ !cancelled() }} | |
with: | |
name: ${{ matrix.os }}-${{ matrix.test }}-results | |
path: results/ | |
merge: | |
name: Merge results | |
needs: tests | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-13, macos-14 ] | |
steps: | |
- name: Merge | |
uses: actions/upload-artifact/merge@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | |
with: | |
name: ${{ matrix.os }}-results | |
compression-level: '9' | |
pattern: ${{ matrix.os }}-*-results | |
delete-merged: true | |
retention-days: 7 | |