diff options
-rw-r--r-- | .github/workflows/ci-linux.yml | 4 |
1 files changed, 4 insertions, 0 deletions
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 |