Skip to content

Merge branch 'main' into add-pip-audit #3328

Merge branch 'main' into add-pip-audit

Merge branch 'main' into add-pip-audit #3328

Workflow file for this run

name: Lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pip'
- name: Install packages
run: |
pip install .
pip install -r requirements-dev.txt
- name: pre-commit
run: pre-commit run --all-files
- name: Run-tests
run: python -m unittest test/test_analysis_runner.py