File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 12
12
jobs :
13
13
standard :
14
14
strategy :
15
- fail-fast : false
16
15
matrix :
17
16
runs-on : [ubuntu-latest, windows-latest, macos-latest]
18
17
arch : [x64]
72
71
73
72
name : " 🐍 ${{ matrix.python }} • ${{ matrix.runs-on }} • ${{ matrix.arch }} ${{ matrix.args }}"
74
73
runs-on : ${{ matrix.runs-on }}
74
+ continue-on-error : ${{ endsWith(matrix.python, 'dev') }}
75
75
76
76
steps :
77
77
- uses : actions/checkout@v2
@@ -102,7 +102,10 @@ jobs:
102
102
- name : Prepare env
103
103
run : python -m pip install -r tests/requirements.txt --prefer-binary
104
104
105
- - name : Configure C++11 ${{ matrix.args1 }}
105
+ - name : Setup annotations
106
+ run : python -m pip install pytest-github-actions-annotate-failures
107
+
108
+ - name : Configure C++11 ${{ matrix.args }}
106
109
run : >
107
110
cmake -S . -B .
108
111
-DPYBIND11_WERROR=ON
You can’t perform that action at this time.
0 commit comments