Skip to content

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

[pre-commit.ci] pre-commit autoupdate

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

Workflow file for this run

on:
pull_request:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.7"
- "3.10"
name: Check Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: python -m pip install -e .[test]
- name: Install nox
run: pip install nox
- name: Test package
run: nox