Add MyPy Gitea action.
Mypy / mypy (push) Successful in 38s Details
Pytest / pytest (push) Successful in 31s Details

This commit is contained in:
Sergio Martínez Portela 2023-10-15 23:34:29 +02:00
parent f7ddddb8c9
commit 1c7e8e9d7c
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
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 --color-output