Skip to content

Commit

Permalink
fixup! ci: add a GitHub workflow to submit Coverity scans
Browse files Browse the repository at this point in the history
  • Loading branch information
dscho committed Sep 22, 2023
1 parent cce9660 commit fd02368
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
if: contains(fromJSON(vars.ENABLE_COVERITY_SCAN_FOR_BRANCHES || '[""]'), github.ref_name)
strategy:
matrix:
os: fromJSON(vars.ENABLE_COVERITY_SCAN_ON_OS || '["ubuntu-latest"]')
os: ${{ fromJSON(vars.ENABLE_COVERITY_SCAN_ON_OS || '["ubuntu-latest"]') }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -36,7 +36,7 @@ jobs:
env:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
run: |
BUILD_LANGUAGE: cxx
BUILD_LANGUAGE=cxx
case "${{ matrix.os }}" in
*windows*)
BUILD_PLATFORM=win64
Expand Down

0 comments on commit fd02368

Please sign in to comment.