Skip to content

Bump version: 3.1.1 → 3.1.2 #3323

Bump version: 3.1.1 → 3.1.2

Bump version: 3.1.1 → 3.1.2 #3323

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