Skip to content

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

[pre-commit.ci] pre-commit autoupdate

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

Workflow file for this run

name: CI
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: |
python -m pip install -e ".[test]"
- name: Test with pytest
run: |
python -m pytest