2020-01-19 18:36:53 +00:00
|
|
|
on: [pull_request, push]
|
2019-12-30 00:59:05 +00:00
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
platform: [macos-latest, ubuntu-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.platform }}
|
|
|
|
steps:
|
2020-01-19 18:38:29 +00:00
|
|
|
- uses: actions/checkout@v2
|
2021-11-21 17:50:34 +00:00
|
|
|
- uses: actions/setup-python@v2
|
2019-12-30 00:59:05 +00:00
|
|
|
with:
|
|
|
|
python-version: "3.6"
|
2021-11-21 17:50:34 +00:00
|
|
|
- uses: actions/setup-python@v2
|
2020-11-01 18:09:43 +00:00
|
|
|
with:
|
2021-11-21 17:48:12 +00:00
|
|
|
python-version: "3.10"
|
2019-12-30 00:59:05 +00:00
|
|
|
- run: python -m pip install --upgrade tox
|
|
|
|
- run: tox
|