org-rw/.gitea/workflows/mypy.yaml
Sergio Martínez Portela da1288a6ba
All checks were successful
Mypy / mypy (push) Successful in 42s
Pytest / pytest (push) Successful in 31s
Add MyPy Gitea action.
2023-10-15 23:36:43 +02:00

15 lines
361 B
YAML

name: Mypy
# run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- run: apt-get update && apt-get install -y python3-pip
- run: pip install -e .
- run: pip install mypy
- run: mypy org_rw