-
Notifications
You must be signed in to change notification settings - Fork 4
57 lines (49 loc) · 1.62 KB
/
windows-subprocess-check.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
name: windows-subprocess-check
on:
push:
branches:
- main
jobs:
pr-validation:
name: test-${{ matrix.os }}-py-${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
python: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
with:
path: substrafl
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Checkout pyconfig from a private repos
uses: actions/checkout@v4
with:
repository: substra/substra-tools
path: substratools
- name: Checkout pyconfig from a private repos
uses: actions/checkout@v4
with:
repository: substra/substra
path: substra
- uses: actions/cache@v3.0.8
id: cache
with:
path: ${{ env.pythonLocation }}
key: ${{ runner.os }}-${{ env.pythonLocation }}-pip-${{ hashFiles('substrafl/pyproject.toml') }}-${{ hashFiles ('substrafl/docs/requirements.txt') }}-${{ hashFiles('substrafl/benchmark/camelyon/requirements.txt') }}
- name: Install package
run: |
pip install --upgrade -e "substrafl[dev]"
pip install --upgrade -e substra
pip install --upgrade -e substratools
- name: Run the subprocess tests
run: |
cd substrafl
make COV_OPTIONS="--cov=substrafl --cov-append --cov-report=html:htmlcov" test-subprocess
- name: Upload coverage artifacts
uses: actions/upload-artifact@v3
with:
name: coverage
path: substrafl/htmlcov