Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Bump ruff from 0.5.0 to 0.5.1 #68

Bump ruff from 0.5.0 to 0.5.1

Bump ruff from 0.5.0 to 0.5.1 #68

Workflow file for this run

---
name: mypy
"on":
push:
branches:
- main # Set a branch to deploy
pull_request:
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Running mypy
run: |
python --version
python -m pip install --quiet --no-cache-dir --upgrade poetry
poetry install
poetry run mypy --strict package/bin/*.py