File tree Expand file tree Collapse file tree 1 file changed +2
-23
lines changed Expand file tree Collapse file tree 1 file changed +2
-23
lines changed Original file line number Diff line number Diff line change 9
9
schedule :
10
10
# run this every Wednesday at 3 am UTC
11
11
- cron : 0 3 * * 3
12
+ workflow_dispatch :
12
13
13
14
jobs :
14
15
tests :
15
16
strategy :
17
+ fail-fast : false
16
18
matrix :
17
19
os :
18
20
- ubuntu-latest
66
68
name : test_results
67
69
path : test_results/
68
70
69
- minimal-dependencies :
70
- runs-on : ubuntu-latest
71
- steps :
72
- - name : Checkout Source
73
- uses : actions/checkout@v4
74
- - name : Setup Python
75
- uses : actions/setup-python@v5
76
- with :
77
- python-version : ' 3.9'
78
- - name : Build library
79
- run : |
80
- python -m pip install --upgrade pip
81
- python -m pip install tomli tomli_w
82
- python scripts/hardpin_minimal_dependencies.py
83
- python -m pip install .
84
- python -m pip install --requirement requirements/tests.txt
85
-
86
- - name : Run test suite
87
- run : |
88
- python -m pip freeze
89
- pytest --color yes
90
-
91
-
92
71
image-tests :
93
72
name : Image tests
94
73
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments