β¬οΈπͺ Update pre-commit hook crate-ci/typos to v1.30.0 #795
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: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
change-detection: | |
name: π Change | |
uses: cda-tum/mqt-workflows/.github/workflows/reusable-change-detection.yml@v1.5 | |
cpp-tests: | |
name: π¨β Test | |
needs: change-detection | |
if: fromJSON(needs.change-detection.outputs.run-cpp-tests) | |
uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-ci.yml@v1.5 | |
# Explicitly set permissions so that the workflows also work from forks. | |
permissions: | |
contents: read # Required for the `actions/checkout` action | |
id-token: write # Required for the `codecov/codecov-action` action | |
with: | |
cmake-args: "" | |
cmake-args-ubuntu: -G Ninja | |
cmake-args-macos: -G Ninja | |
cmake-args-windows: -T ClangCL | |
cpp-linter: | |
name: π¨β Lint | |
needs: change-detection | |
if: fromJSON(needs.change-detection.outputs.run-cpp-linter) | |
uses: cda-tum/mqt-workflows/.github/workflows/reusable-cpp-linter.yml@v1.5 | |
python-tests: | |
name: π Test | |
needs: change-detection | |
if: fromJSON(needs.change-detection.outputs.run-python-tests) | |
uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-ci.yml@v1.5 | |
# Explicitly set permissions so that the workflows also work from forks. | |
permissions: | |
contents: read # Required for the `actions/checkout` action | |
id-token: write # Required for the `codecov/codecov-action` action | |
code-ql: | |
name: π CodeQL | |
needs: change-detection | |
if: fromJSON(needs.change-detection.outputs.run-code-ql) | |
uses: cda-tum/mqt-workflows/.github/workflows/reusable-code-ql.yml@v1.5 | |
cd: | |
name: π CD | |
needs: change-detection | |
if: fromJSON(needs.change-detection.outputs.run-cd) | |
uses: cda-tum/mqt-workflows/.github/workflows/reusable-python-packaging.yml@v1.5 | |
required-checks-pass: # This job does nothing and is only used for branch protection | |
name: π¦ Check | |
if: always() | |
needs: | |
- change-detection | |
- cpp-tests | |
- cpp-linter | |
- python-tests | |
- code-ql | |
- cd | |
runs-on: ubuntu-latest | |
steps: | |
- name: Decide whether the needed jobs succeeded or failed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
allowed-skips: >- | |
${{ | |
fromJSON(needs.change-detection.outputs.run-cpp-tests) | |
&& '' || 'cpp-tests,' | |
}} | |
${{ | |
fromJSON(needs.change-detection.outputs.run-cpp-linter) | |
&& '' || 'cpp-linter,' | |
}} | |
${{ | |
fromJSON(needs.change-detection.outputs.run-python-tests) | |
&& '' || 'python-tests,' | |
}} | |
${{ | |
fromJSON(needs.change-detection.outputs.run-code-ql) | |
&& '' || 'code-ql,' | |
}} | |
${{ | |
fromJSON(needs.change-detection.outputs.run-cd) | |
&& '' || 'cd,' | |
}} | |
jobs: ${{ toJSON(needs) }} |