Add CI/CD #9

Merged
bastien.ollier merged 8 commits from refs/pull/9/head into main 2024-06-21 16:53:01 +02:00
2 changed files with 18 additions and 0 deletions
Showing only changes of commit f0bafa7b17 - Show all commits

13
.drone.yml Normal file
View File

@@ -0,0 +1,13 @@
kind: pipeline
name: default
type: docker
on:
push:
steps:
- name: lint
image: python:3.12
commands:
- pip install --root-user-action=ignore -r requirements.txt
- ruff check .

5
requirements.txt Normal file
View File

@@ -0,0 +1,5 @@
matplotlib>=3.5.0
pandas>=1.5.0
seaborn>=0.12.0
streamlit>=1.35.0
ruff>=0.4.8