Skip to content

Implementation of CI workflows #1

Implementation of CI workflows

Implementation of CI workflows #1

Workflow file for this run

name: Code Quality
on:
push:
branches: [ wip-ci ]
pull_request:
branches: [ main ]
jobs:
code-quality-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ vars.CI_PYTHON_VERSION }}
- name: Run pre-commit
uses: pre-commit/[email protected]