Skip to content

Update README.md

Update README.md #8

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install
run: |
pip install --upgrade pip
pip install -r requirements.txt
pip install pytest pytest-cov black flake8
- name: Lint
run: flake8 src/identifiability_diagnostic tests --exit-zero
- name: Format Check
run: black --check src/identifiability_diagnostic tests
- name: Test
run: pytest tests/ -v