Bump third-party/autotrace from 67102f1
to 86922ae
#16
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: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ci-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint | |
uses: ./.github/workflows/lint.yaml | |
build: | |
name: Build | |
uses: ./.github/workflows/build.yaml | |
release: | |
name: Release | |
if: startsWith(github.ref, 'refs/tags/v') | |
needs: [lint, build] | |
uses: ./.github/workflows/release.yaml |