piotrmaslanka #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
run-name: ${{ github.actor }} | |
on: [ push ] | |
jobs: | |
tests: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [ "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12" ] | |
steps: | |
- uses: actions/checkout@main | |
- uses: actions/setup-python@main | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: pip | |
- name: Install everything | |
run: | | |
pip install -U pip setuptools wheel disttools packaging pyproject.toml | |
python setup.py install | |
- name: Test | |
run: | | |
cd example | |
python setup.py test | |
env: | |
DEBUG: "1" |