Skip to content

[MAINT] Use pytest for testing and estimating coverage and refactor #7

[MAINT] Use pytest for testing and estimating coverage and refactor

[MAINT] Use pytest for testing and estimating coverage and refactor #7

Workflow file for this run

---
name: flake8
on:
push:
branches:
- master
pull_request:
branches:
- '*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
flake8:
name: run flake8
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.12'
allow-prereleases: false
- name: Install tox
run: python -m pip install --upgrade tox
- name: Run Flake8
run: tox run -e flake8