Skip to content

Commit a032d74

Browse files
committed
Update CI/CD to not fail when CodeQL is offline...
1 parent 4bceef5 commit a032d74

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,10 @@ jobs:
5858
with:
5959
languages: cpp
6060
- name: Build
61+
if: success() || failure()
6162
run: premake5 build --config=${{ matrix.config }} --architecture=${{ matrix.architecture }}
6263
- name: Perform CodeQL Analysis
6364
uses: github/codeql-action/analyze@v2
64-
- name: Print contents of bin
65-
if: matrix.machine.os == 'ubuntu-latest'
66-
run: ls bin
6765
- name: Run test
66+
if: success() || failure()
6867
run: premake5 test --config=${{ matrix.config }} --architecture=${{ matrix.architecture }}

0 commit comments

Comments
 (0)