Skip to content

Cover 0.2.0 in the release notes (#17) #166

Cover 0.2.0 in the release notes (#17)

Cover 0.2.0 in the release notes (#17) #166

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests-ubuntu:
name: "Test: py${{ matrix.python-version }}, Ubuntu"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "pypy3.7"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: pip install tox
- name: Run tests
run: tox -e py
- name: Upload coverage report
run: bash <(curl -s https://codecov.io/bash)
tests-other-os:
name: "Test: py3.8, ${{ matrix.os }}"
runs-on: "${{ matrix.os }}"
strategy:
fail-fast: false
matrix:
os: [macos-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install tox
run: pip install tox
- name: Run tests
run: tox -e py