Skip to content

wip

wip #13

name: Tests
on:
pull_request:
branches:
- main
push:
branches:
- test-gh-workflows
env:
PY_COLORS: "1"
jobs:
test:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform:
- ubuntu-20.04
# - macos-latest
# - windows-latest
python-version:
# - '3.6'
# - '3.7'
- '3.8'
# - '3.9'
# - '3.10'
# - '3.11'
# - 'pypy-3.9'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install build tools
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools tox-gh-actions wheel
- name: Run tests
run: tox