cancel redundant runs #227
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: PR Checks | |
on: | |
push: | |
branches: [main, dev] | |
pull_request: | |
branches: [main, dev] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
unit_tests: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install nox | |
shell: bash | |
run: pip install nox[uv] | |
- name: Run unit tests | |
run: nox | |
system_tests: | |
name: System Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Install nox | |
shell: bash | |
run: pip install nox[uv] | |
- name: Run system tests | |
run: nox -s system_tests | |
# - name: Code style | |
# run: ruff check || true | |
# if: success() || failure() | |
#code_style: | |
# name: Code Style | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - uses: ./.github/actions/setup-depiction | |
# with: | |
# python-version: 3.11 | |
# - name: Check code with ruff | |
# run: | |
# ruff check || true |