diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index e86426d..439d64a 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -8,17 +8,19 @@ env: jobs: build-gcc: runs-on: ${{matrix.os}} - name: ${{ matrix.os}} ${{ matrix.version }} C++${{ matrix.cpp }} + name: ${{ matrix.os}} gcc${{ matrix.version }} C++${{ matrix.cpp }} strategy: fail-fast: false max-parallel: 4 matrix: os: [ubuntu-20.04, ubuntu-22.04] cpp: [17] - version: [7, 8, 9, 10, 11] + version: [9, 10, 11] include: - os: ubuntu-22.04 version: 12 + - os: ubuntu-20.04 + version: [7, 8] env: CPP_STANDARD: ${{ matrix.cpp }} steps: