Skip to content

CLN/MAINT: Vendor code, fix #262 #211

CLN/MAINT: Vendor code, fix #262

CLN/MAINT: Vendor code, fix #262 #211

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10", 3.11]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: run tests
run: |
pip install nox
pip install '.[test]'
nox --session coverage
- name: upload coverage to Codecov
uses: codecov/codecov-action@v3