File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,7 @@ on: [push]
4
4
5
5
jobs :
6
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 }}
7
+ runs-on : ubuntu-latest
12
8
13
9
steps :
14
10
- uses : actions/checkout@v2
26
22
- uses : ./../action/analyze
27
23
env :
28
24
TEST_MODE : true
25
+ - run : |
26
+ cd "$CODEQL_ACTION_DATABASE_DIR"
27
+ if [ "$(ls | wc -l)" != 6 ] || \
28
+ [[ ! -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
29
37
30
38
multi-language-repo_test-custom-queries :
31
39
strategy :
You can’t perform that action at this time.
0 commit comments