2020-10-20 17:44:54 +03:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2022-08-30 08:35:56 +03:00
|
|
|
- main
|
2020-10-20 17:44:54 +03:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
tests:
|
2021-11-09 22:12:29 +03:00
|
|
|
runs-on: ${{ matrix.os }}-latest
|
2020-10-20 17:44:54 +03:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2021-11-09 22:12:29 +03:00
|
|
|
os:
|
|
|
|
- ubuntu
|
|
|
|
- windows
|
2020-10-20 17:44:54 +03:00
|
|
|
python-version:
|
2021-11-09 17:58:09 +03:00
|
|
|
- "3.7"
|
|
|
|
- "3.8"
|
|
|
|
- "3.9"
|
|
|
|
- "3.10"
|
2022-10-25 15:46:20 +03:00
|
|
|
- "3.11"
|
2020-10-20 17:44:54 +03:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-04-16 19:21:51 +03:00
|
|
|
|
2020-10-20 17:44:54 +03:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2021-04-16 19:21:51 +03:00
|
|
|
|
2020-10-20 17:44:54 +03:00
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
2021-04-16 19:21:51 +03:00
|
|
|
python -m pip install --upgrade pip setuptools wheel
|
|
|
|
python -m pip install --upgrade tox tox-py
|
|
|
|
|
2020-10-20 17:44:54 +03:00
|
|
|
- name: Run tox targets for ${{ matrix.python-version }}
|
2021-04-16 19:21:51 +03:00
|
|
|
run: tox --py current
|