-
Notifications
You must be signed in to change notification settings - Fork 9
73 lines (63 loc) · 1.86 KB
/
test-examples-subprocess.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
name: Documentation examples - subprocess
on:
pull_request:
paths:
- "docs/source/examples/**"
push:
branches:
- main
workflow_dispatch:
jobs:
pr-validation:
name: test-${{ matrix.os }}-py-${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
python: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
path: substra-documentation
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Free disk space
run: |
# Based on https://github.com/actions/runner-images/issues/2840#issuecomment-790492173
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Checkout substra-tools on main
uses: actions/checkout@v4
with:
repository: substra/substra-tools
path: substratools
- name: Checkout substra on main
uses: actions/checkout@v4
with:
repository: substra/substra
path: substra
- name: Checkout substrafl on main
uses: actions/checkout@v4
with:
repository: substra/substrafl
path: substrafl
- name: Install package
run: |
pip install --upgrade pip
pip install --upgrade -e substrafl
pip install --upgrade -e substra
pip install --upgrade -e substratools
- name: Install examples dependencies
run: |
cd substra-documentation
make install-examples-dependencies
- name: Run examples
env:
SUBSTRA_FORCE_EDITABLE_MODE: True
run: |
cd substra-documentation
make examples