This repository has been archived by the owner on Dec 24, 2024. It is now read-only.
build(deps-dev): bump mypy from 1.12.0 to 1.14.0 #176
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: ci | |
on: push | |
jobs: | |
test-python: | |
name: test python | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.13' | |
- run: pip install pipenv | |
- run: pipenv install --dev -v | |
- run: pipenv run pytest | |
- run: pipenv run ruff check | |
- run: pipenv run ruff format --check |