Skip to content

Placate flake8

Placate flake8 #62

Workflow file for this run

name: python
on: [push]
jobs:
tox:
strategy:
matrix:
python-version: ['3.10', '3.11']
os: [ubuntu-22.04, macos-12]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with tox
run: tox