Browse Source

Remove redundant quotes and braces.

pull/1498/head
josetr 5 years ago committed by GitHub
parent
commit
b73ae97f2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/main.yml

4
.github/workflows/main.yml

@ -9,7 +9,7 @@ jobs:
matrix: matrix:
config: config:
- { os: ubuntu-20.04, platform: x64, cxx: g++-7, cc: gcc-7 } - { os: ubuntu-20.04, platform: x64, cxx: g++-7, cc: gcc-7 }
- { os: macos-10.15, platform: x64, cxx: "clang++", cc: "clang" } - { os: macos-10.15, platform: x64, cxx: clang++, cc: clang }
- { os: windows-2019, platform: x86, vs: 2019 } - { os: windows-2019, platform: x86, vs: 2019 }
- { os: windows-2019, platform: x64, vs: 2019 } - { os: windows-2019, platform: x64, vs: 2019 }
@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Environment - name: Environment
if: ${{ matrix.config.vs > 0 }} if: matrix.config.vs > 0
shell: bash shell: bash
run: echo "/c/Program Files (x86)/Microsoft Visual Studio/$VS_VERSION/Enterprise/MSBuild/Current/Bin" >> $GITHUB_PATH run: echo "/c/Program Files (x86)/Microsoft Visual Studio/$VS_VERSION/Enterprise/MSBuild/Current/Bin" >> $GITHUB_PATH

Loading…
Cancel
Save