Skip to content

Switch from distutils to setuptools and build (#20) #16

Switch from distutils to setuptools and build (#20)

Switch from distutils to setuptools and build (#20) #16

Workflow file for this run

name: PyTest
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
- '3.11'
- '3.12'
steps:
- uses: actions/checkout@v2
- run: python -m pip install --upgrade pip
- run: python -m pip install flake8 pytest
- run: python -m pytest -v
- run: flake8 .