Skip to content

pep420 package layout #76

pep420 package layout

pep420 package layout #76

Workflow file for this run

name: Build and test
on: [push]
jobs:
test-and-check:
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Run install
run: |
make install
- name: Run checkers
run: |
make check
- name: Run tests
run: |
make test