Skip to content

[pre-commit.ci] pre-commit autoupdate #28

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #28

Workflow file for this run

name: CI
on:
push:
branches:
- master
- main
pull_request: {}
workflow_dispatch:
jobs:
test:
name: ${{ matrix.platform }} (${{ matrix.python-version }})
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9]
platform: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools tox tox-gh-actions
- name: Test with tox
run: tox
env:
PLATFORM: ${{ matrix.platform }}
- name: Coverage
if: runner.os == 'Linux'
uses: codecov/codecov-action@v1