WIP Add CI #1

Open
Adrien wants to merge 39 commits from init-ci into develop
2 changed files with 22 additions and 2 deletions
Showing only changes of commit 6687c2de15 - Show all commits

View File

@@ -1,15 +1,19 @@
when:
- event: push
- branch:
exclude: [master, release/*]
steps:
- name: ruff
image: python:3.12-alpine
commands:
- pip install ruff
- ruff --output-format github .
when:
- branch:
exclude: [master, develop, release/*]
- name: mypy
image: python:3.12-alpine
commands: |
pip install mypy
mypy .
runs_on: [ success, failure ]