Skip to content

Commit f736340

Browse files
+ macos-14
1 parent 748bcf3 commit f736340

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,35 @@ jobs:
204204
cd tests
205205
bash ./run.sh ${{ matrix.compiler }}
206206
207+
tests-macos14-gpp:
208+
strategy:
209+
matrix:
210+
os: [macos-14]
211+
compiler: [g++]
212+
version: [12, 13, 14]
213+
name: Use ${{ matrix.compiler }}-${{ matrix.version }} on ${{ matrix.os }}
214+
runs-on: ${{ matrix.os }}
215+
steps:
216+
- uses: actions/checkout@v3
217+
- name: Run tests
218+
run: |
219+
cd tests
220+
bash ./run.sh ${{ matrix.compiler }} v${{ matrix.version }}
221+
222+
tests-macos14-clang:
223+
strategy:
224+
matrix:
225+
os: [macos-14]
226+
compiler: [clang++]
227+
name: Use ${{ matrix.compiler }} on ${{ matrix.os }}
228+
runs-on: ${{ matrix.os }}
229+
steps:
230+
- uses: actions/checkout@v3
231+
- name: Run tests
232+
run: |
233+
cd tests
234+
bash ./run.sh ${{ matrix.compiler }}
235+
207236
tests-windows-2019:
208237
strategy:
209238
matrix:

0 commit comments

Comments
 (0)