Skip to content

Add NANO_MODE primary filtration mode (#47) #206

Add NANO_MODE primary filtration mode (#47)

Add NANO_MODE primary filtration mode (#47) #206

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request: ~
workflow_dispatch: ~
jobs:
build:
strategy:
matrix:
python-version: [3.9, 3.11, 3.12]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_tests.txt
pip install flake8
- name: Lint with flake8
run: flake8 --show-source --statistics
- name: Test with pytest
run: pytest --cov-fail-under=100 --cov-report=term-missing