Skip to content

Merge pull request #139 from rafsaf/dependabot/pip/dev-dependencies-6… #246

Merge pull request #139 from rafsaf/dependabot/pip/dev-dependencies-6…

Merge pull request #139 from rafsaf/dependabot/pip/dev-dependencies-6… #246

Workflow file for this run

name: type-check
on:
push:
branches:
- "**"
tags-ignore:
- "*.*"
jobs:
type_check:
strategy:
matrix:
check: ["ruff check", "mypy --check", "black --check"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11.5"
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies and actiavte virtualenv
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
poetry install --no-interaction --no-root
- name: Run ${{ matrix.check }}
run: |
poetry run ${{ matrix.check }} .