File tree Expand file tree Collapse file tree 2 files changed +30
-11
lines changed
Expand file tree Collapse file tree 2 files changed +30
-11
lines changed Original file line number Diff line number Diff line change 1+ name : Check integration tests with "none" device
2+
3+ on :
4+ pull_request :
5+ paths :
6+ - ' **.py'
7+ - ' **.yml'
8+
9+ jobs :
10+ tests :
11+ runs-on : ubuntu-latest
12+ strategy :
13+ max-parallel : 6
14+ matrix :
15+ python-version : [ "3.11", "3.12", "3.13" ]
16+ steps :
17+ - uses : actions/checkout@v4
18+ - name : Set up Python ${{ matrix.python-version }}
19+ uses : actions/setup-python@v5
20+ with :
21+ python-version : ${{ matrix.python-version }}
22+ - name : Install dependencies
23+ run : |
24+ python -m pip install --upgrade pip
25+ pip install -r requirements.txt -r requirements-dev.txt
26+ - name : Check integration tests
27+ run : |
28+ cd tests
29+ ./check-integration-tests.sh
Original file line number Diff line number Diff line change 1- name : Run CICD Tests
1+ name : Run mypy and data transformation tests
22
33on :
44 push :
77 - ' **.py'
88 - ' **.yml'
99
10- pull_request :
11- paths :
12- - ' **.py'
13- - ' **.yml'
14-
1510jobs :
1611 tests :
1712 runs-on : ubuntu-latest
4035 run : |
4136 cd tests
4237 PYTHONPATH="../" pytest
43- - name : Check integration tests
44- if : ${{ github.event_name == 'pull_request' }}
45- run : |
46- cd tests
47- ./check-integration-tests.sh
You can’t perform that action at this time.
0 commit comments