[INFRA] Update CPM Packages #601
Workflow file for this run
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: Lint | |
| on: | |
| pull_request_target: | |
| env: | |
| TZ: Europe/Berlin | |
| defaults: | |
| run: | |
| shell: bash -Eeuxo pipefail {0} | |
| jobs: | |
| # Cancel other workflows that are dependent on this workflow by adding jobs that have the same concurrency group. | |
| cancel_running_workflows: | |
| name: Cancel ${{ matrix.workflow}} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| workflow: ["linux", "macos", "misc", "coverage", "documentation"] | |
| concurrency: | |
| group: ${{ matrix.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Cancel ${{ matrix.workflow }}" | |
| run: echo "Cancelling ${{ matrix.workflow }}" | |
| lint: | |
| name: Lint | |
| concurrency: | |
| group: lint-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| needs: cancel_running_workflows | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Run lint | |
| uses: seqan/actions/lint@main | |
| with: | |
| clang_format: 15 | |
| token: ${{ secrets.SEQAN_ACTIONS_PAT }} | |
| gpg_key: ${{ secrets.SEQAN_ACTIONS_GPG_KEY }} | |
| gpg_passphrase: ${{ secrets.SEQAN_ACTIONS_GPG_PASSPHRASE }} |