Skip to content

Commit

Permalink
faster tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMirzayanov committed Sep 28, 2023
1 parent c6c2dbd commit fdb967f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit fdb967f

Please sign in to comment.