Skip to content

Github Actions: no cache, update versions #85

Github Actions: no cache, update versions

Github Actions: no cache, update versions #85

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.9
architecture: x64
- run: pip install -e .[Dev]
- run: black --check *.py */
- run: isort --check-only *.py */
- run: flake8
- run: mypy --install-types --non-interactive -p dokkusd