From c29b72fcdc4895ffeefd710e460ce2b59d8e8af3 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Fri, 2 Oct 2020 13:22:04 +0100 Subject: [PATCH] Add C++98 and C++14 build matrixes to the Linux CI. --- .github/workflows/ci-linux.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml index c0c240ee8..00c99561e 100644 --- a/.github/workflows/ci-linux.yml +++ b/.github/workflows/ci-linux.yml @@ -7,6 +7,7 @@ jobs: runs-on: ubuntu-20.04 env: CXX: ${{ matrix.compiler }} + CXXFLAGS: -std=${{ matrix.standard }} steps: - uses: actions/checkout@v2 - name: Install dependencies @@ -45,3 +46,6 @@ jobs: compiler: - clang++ - g++ + standard: + - c++98 + - c++14