-
Notifications
You must be signed in to change notification settings - Fork 7
78 lines (60 loc) · 1.83 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Continuous Integration and Deployment
on:
push:
branches: [ main ]
pull_request:
schedule:
- cron: "0 3 * * 1" # Run every Monday 3 am
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "0.5.10"
- name: Install tkinter for GUI
run: sudo apt install python3-tk -y
- name: Set up env
run: uv sync --all-extras
- name: Run ruff format
run: uv run ruff format
- name: Run ruff linter for mdp folder
run: uv run ruff check src/behavior_generation_lecture_python/mdp
- name: Run mypy for mdp folder
run: uv run mypy src/behavior_generation_lecture_python/mdp
- name: Test
run: |
export DISPLAY=:99
Xvfb :99 &
uv run pytest
- name: Check coverage
run: |
export DISPLAY=:99
Xvfb :99 &
uv run pytest --cov=src --cov-fail-under=85
- name: Copy notebooks to docs folder
run: cp -r notebooks/* docs/notebooks
- name: Build docs
run: |
uv run ipython kernel install --user --name=behavior_generation_lecture
uv run mkdocs build
deploy-pages:
runs-on: ubuntu-latest
needs: [test]
if: github.ref == 'refs/heads/main'
concurrency: deploy-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "0.5.10"
- name: Set up env
run: uv sync --all-extras
- name: Copy notebooks to docs folder
run: cp -r notebooks/* docs/notebooks
- run: |
uv run ipython kernel install --user --name=behavior_generation_lecture
uv run mkdocs gh-deploy --force