Browse Source

faster tests

mikemirzayanov 7 months ago
parent
commit
fdb967f697
1 changed files with 4 additions and 4 deletions
  1. 4 4
      .github/workflows/ci.yml

+ 4 - 4
.github/workflows/ci.yml

@@ -176,21 +176,21 @@ jobs:
       matrix:
         os: [macos-12]
         compiler: [g++]
-    name: Use ${{ matrix.compiler }} on ${{ matrix.os }}
+        version: [11, 12, 13]
+    name: Use ${{ matrix.compiler }}-${{ matrix.version }} on ${{ matrix.os }}
     runs-on: ${{ matrix.os }}
     steps:
       - uses: actions/checkout@v3
       - name: Run tests
         run: |
           cd tests
-          bash ./run.sh ${{ matrix.compiler }}
+          bash ./run.sh ${{ matrix.compiler }} v${{ matrix.version }}
 
   tests-macos12-clang:
     strategy:
       matrix:
         os: [macos-12]
         compiler: [clang++]
-        version: [12, 13, 14]
     name: Use ${{ matrix.compiler }} on ${{ matrix.os }}
     runs-on: ${{ matrix.os }}
     steps:
@@ -205,7 +205,7 @@ jobs:
       matrix:
         os: [macos-13]
         compiler: [g++]
-        version: [11, 12]
+        version: [11, 12, 13]
     name: Use ${{ matrix.compiler }}-${{ matrix.version }} on ${{ matrix.os }}
     runs-on: ${{ matrix.os }}
     steps: