[pre-commit.ci] pre-commit autoupdate #374
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
# This workflow will install Python dependencies, run tests and lint with a single version of Python | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: check gepetuto | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
- name: Install gepetuto and its dependencies | |
run: pipx install poetry && poetry install --with dev | |
- name: check with gepetuto | |
run: poetry run gepetuto -vvca all -C tests | |
- name: run unit tests | |
run: cd tests && poetry run python -m unittest | |
- name: run mypy | |
run: poetry run mypy --explicit-package-bases tests gepetuto |