Skip to content

Modernize packaging: use pyproject.toml instead of setup.py/cfg #173

Modernize packaging: use pyproject.toml instead of setup.py/cfg

Modernize packaging: use pyproject.toml instead of setup.py/cfg #173

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
linter:
- lint
- check
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U tox
- run: tox -e ${{ matrix.linter }}