Skip to content

Debugging MatchingPix #6

Debugging MatchingPix

Debugging MatchingPix #6

Workflow file for this run

name: Flake8
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8=='7.1.1'
pip install -e .
- name: Check code quality
run: |
flake8 examples
flake8 src
flake8 tests