From e1712d34aac9741436bbf972f8cc822fce0456d7 Mon Sep 17 00:00:00 2001 From: fallenoak Date: Mon, 30 Nov 2020 23:56:31 -0600 Subject: [PATCH] chore(build): clean up matrix config --- .github/workflows/push.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 2cd0299..0a4fbcf 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -17,14 +17,14 @@ jobs: - name: Ubuntu Latest (GCC) os: ubuntu-latest build_type: Release - cc: "gcc" - cxx: "g++" + cc: gcc + cxx: g++ - - name: "macOS Latest (Clang)" + - name: macOS Latest (Clang) os: macos-latest - build_type: "Release" - cc: "clang" - cxx: "clang++" + build_type: Release + cc: clang + cxx: clang++ steps: - uses: actions/checkout@v2