🔧 adjust naming of GitHub action jobs (#3661)

This commit is contained in:
Niels Lohmann
2022-08-03 18:37:02 +02:00
committed by GitHub
parent ac20714e2e
commit 22cd1c9eb9
3 changed files with 59 additions and 59 deletions

View File

@@ -24,11 +24,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: cmake
- name: Run CMake
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On -DJSON_FastTests=ON
- name: build
- name: Build
run: cmake --build build --parallel 10
- name: test
- name: Test
run: cd build ; ctest -j 10 --output-on-failure
xcode_2:
@@ -41,11 +41,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: cmake
- name: Run CMake
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On -DJSON_FastTests=ON
- name: build
- name: Build
run: cmake --build build --parallel 10
- name: test
- name: Test
run: cd build ; ctest -j 10 --output-on-failure
xcode_standards:
@@ -58,9 +58,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: cmake
- name: Run CMake
run: cmake -S . -B build -D CMAKE_BUILD_TYPE=Debug -DJSON_BuildTests=On -DJSON_TestStandards=${{ matrix.standard }}
- name: build
- name: Build
run: cmake --build build --parallel 10
- name: test
- name: Test
run: cd build ; ctest -j 10 --output-on-failure