Check - dev #41
This file contains hidden or 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: Check | |
| run-name: Check - ${{ github.ref_name }} | |
| on: | |
| push: | |
| branches-ignore: | |
| - release | |
| workflow_dispatch: # Allow to manually trigger the pipeline | |
| # If several pushes are made on a single branch, only build the last one. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: ./.github/actions/prepare | |
| - uses: ./.github/actions/build |