Skip to content

test on Python 3.13-dev (#13) #40

test on Python 3.13-dev (#13)

test on Python 3.13-dev (#13) #40

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- "master"
pull_request:
jobs:
ci:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.12", "3.13-dev"]
os: [windows-latest, macos-latest, ubuntu-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: |
pip install --upgrade pip wheel
pip install -e.
pip install -r requirements.txt
- name: Lint
uses: pre-commit/action@v2.0.0
- name: Test with Pytest
run: pytest
- name: Upload Coverage Report
uses: codecov/codecov-action@v1.3.1