Skip to content

Updated config example #47

Updated config example

Updated config example #47

Workflow file for this run

name: MyPy
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
Check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip poetry
python -m venv ./venv
. ./venv/bin/activate
poetry install
- name: MyPy check
run: |
. ./venv/bin/activate
mypy inkyframeweb/*.py