Skip to content

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

[pre-commit.ci] pre-commit autoupdate

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

Workflow file for this run

name: CI
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ["3.10", "3.9", "3.8"]
steps:
- uses: actions/checkout@v3
with: # no need for the history
fetch-depth: 1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install --upgrade --force-reinstall --no-cache-dir --editable=".[dev]"
- name: Test with pytest
run: |
pytest