diff options
author | Sadie Powell <sadie@witchery.services> | 2020-10-02 13:22:04 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-10-02 14:27:04 +0100 |
commit | c29b72fcdc4895ffeefd710e460ce2b59d8e8af3 (patch) | |
tree | 74c18345e141e31f3abc93998957bffe6714e7e1 | |
parent | a3673a5a2de9baccd3e0a423de753e65f90717b0 (diff) |
Add C++98 and C++14 build matrixes to the Linux CI.
-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 |