Bump github/codeql-action from 3.26.13 to 3.27.0 (#1654) #786
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: Build | |
on: | |
workflow_dispatch: # for testing | |
push: | |
branches: | |
- 'develop' | |
# This is what will cancel the workflow concurrency | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check_integrity: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- python-version: "3.9" | |
tox-env-py: "39" | |
- python-version: "3.10" | |
tox-env-py: "310" | |
- python-version: "3.11" | |
tox-env-py: "311" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Installing Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: stable | |
override: true | |
- name: Installing python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Installing dependencies | |
run: | | |
python -m pip install tox | |
- name: Code instrumentation | |
run: | | |
tox -e tests-py${{ matrix.tox-env-py }}-lin | |
call-notify-to-teams: | |
needs: [check_integrity] | |
if: | | |
always() && | |
contains(needs.*.result, 'failure') | |
uses: ./.github/workflows/notify_teams.yml | |
secrets: inherit |