Skip to content

Drop setuptools for flit and pyproject.toml #77

Drop setuptools for flit and pyproject.toml

Drop setuptools for flit and pyproject.toml #77

Workflow file for this run

name: cookiecutter-pypackage
on:
push:
branches:
- master
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- tox-env: py38
python-version: "3.8"
- tox-env: py39
python-version: "3.9"
- tox-env: pypy3
python-version: "pypy3.9"
steps:
- name: Cancel previous runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Run bake test suite
run: tox -e ${{ matrix.tox-env }}