Skip to content

[WIP] Error logging callback #36

[WIP] Error logging callback

[WIP] Error logging callback #36

name: PR Code Quality Checks
on:
push:
branches:
- dev
- main
- release/**
pull_request:
workflow_dispatch:
# Cancel old runs when a new commit is pushed to the same branch if not on main or dev
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/dev' }}
jobs:
code-quality:
uses: ./.github/workflows/code-quality.yaml
strategy:
matrix:
python_version:
- '3.8'
- '3.9'
- '3.10'
pip_deps:
- '[dev]'
with:
python_version: ${{ matrix.python_version }}
pip_deps: ${{ matrix.pip_deps }}