We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff40939 commit 6d1f969Copy full SHA for 6d1f969
1 file changed
.github/workflows/integration-testing.yml
@@ -4,11 +4,7 @@ on: [push]
4
5
jobs:
6
multi-language-repo_test-autodetect-languages:
7
- strategy:
8
- fail-fast: false
9
- matrix:
10
- os: [ubuntu-latest, windows-latest]
11
- runs-on: ${{ matrix.os }}
+ runs-on: ubuntu-latest
12
13
steps:
14
- uses: actions/checkout@v2
@@ -26,6 +22,18 @@ jobs:
26
22
- uses: ./../action/analyze
27
23
env:
28
24
TEST_MODE: true
25
+ - run: |
+ cd "$CODEQL_ACTION_DATABASE_DIR"
+ if [ "$(ls | wc -l)" != 6 ] || \
+ [[ ! -d cpp ]] || \
29
+ [[ ! -d csharp ]] || \
30
+ [[ ! -d go ]] || \
31
+ [[ ! -d java ]] || \
32
+ [[ ! -d javascript ]] || \
33
+ [[ ! -d python ]]; then
34
+ echo "Did not find expected number of databases. Database dir contains: $(ls)"
35
+ exit 1
36
+ fi
37
38
multi-language-repo_test-custom-queries:
39
strategy:
0 commit comments