Skip to content

ci: bump the actions-deps group with 4 updates #73

ci: bump the actions-deps group with 4 updates

ci: bump the actions-deps group with 4 updates #73

Workflow file for this run

name: CI
on:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.10.9
- name: Install poetry
uses: abatilo/actions-poetry@v4.0.0
with:
poetry-version: 1.3.1
- name: Print Environment
run: |
poetry install
poetry --version
- name: Run pytest
run: poetry run pytest
- name: Install and Run Pre-Commit
run: |
poetry run pre-commit install
poetry run pre-commit run --all-files