Add changelog entry for latest changes #477
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: Tests | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-20.04 ] | |
python: [ '3.8', '3.9', '3.10', '3.11' ] | |
variant: [ "py", "py-images" ] | |
include: | |
- os: macOS-11 | |
python: "3.10" | |
variant: py-images | |
- os: windows-2019 | |
python: "3.10" | |
variant: py-images | |
- os: windows-2019 | |
name: python${{ matrix.python }} on ${{ matrix.os }} ${{ matrix.variant }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install test dependency | |
run: pip install tox | |
- name: Run tests | |
run: tox | |
env: | |
TOXENV: ${{ matrix.variant }} |