Skip to content

Reset main to feature/aqs-sample-run state before DEQRPorter changes #22

Reset main to feature/aqs-sample-run state before DEQRPorter changes

Reset main to feature/aqs-sample-run state before DEQRPorter changes #22

Workflow file for this run

name: CI
on:
push:
branches: [ main, feature/** ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r ops/requirements.txt
- name: Run linters (ruff)
run: |
ruff check .
- name: Run black check
run: |
black --check .
- name: Run tests
env:
PYTHONPATH: src
run: |
python -m pytest -q