7 # The branches below must be a subset of the branches above
15 runs-on: ubuntu-latest
19 - name: Setup Java JDK
20 uses: actions/setup-java@v1
24 - name: Checkout repository
25 uses: actions/checkout@v2
27 # We must fetch at least the immediate parents so that if this is
28 # a pull request then we can checkout the head.
31 # Initializes the CodeQL tools for scanning.
32 - name: Initialize CodeQL
33 uses: github/codeql-action/init@v1
34 # Override language selection by uncommenting this and choosing your languages
36 # languages: go, javascript, csharp, python, cpp, java
38 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
39 # If this step fails, then you should remove it and run the build manually (see below)
41 uses: github/codeql-action/autobuild@v1
43 # âšī¸ Command-line programs to run using the OS shell.
44 # đ https://git.io/JvXDl
46 # âī¸ If the Autobuild fails above, remove it and uncomment the following three lines
47 # and modify them (or add more) to build your code if your project
48 # uses a compiled language
54 - name: Perform CodeQL Analysis
55 uses: github/codeql-action/analyze@v1