We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bff6695 commit 58a5b79Copy full SHA for 58a5b79
.github/workflows/tests.yml
@@ -0,0 +1,35 @@
1
+name: Build
2
+
3
+on:
4
+ merge_group:
5
+ pull_request:
6
+ push:
7
+ branches:
8
+ - master
9
10
+jobs:
11
+ test:
12
+ name: Tests
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ actions: read
16
+ contents: write
17
+ security-events: write
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+ - uses: actions/setup-java@v4
21
+ with:
22
+ distribution: 'temurin'
23
+ java-version: '21'
24
+ cache: 'maven'
25
+ - name: Initialize CodeQL
26
+ uses: github/codeql-action/init@v3
27
28
+ languages: java
29
+ - name: Build with Maven
30
+ timeout-minutes: 15
31
+ run: mvn -B clean package --file pom.xml
32
+ - name: Perform CodeQL Analysis
33
+ uses: github/codeql-action/analyze@v3
34
35
+ category: "/language:java"
0 commit comments