Skip to content

Commit

Permalink
WIP Add CodeQL Job
Browse files Browse the repository at this point in the history
  • Loading branch information
knoppiks committed Jul 10, 2024
1 parent 3336302 commit f533ca3
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:
branches: [ "*" ]
tags: [ "v*.*.*" ]
pull_request:
branches: [ "main" ]

jobs:
analyze:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: java
queries: security-and-quality

- name: Build
run: mvn -B build

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3

0 comments on commit f533ca3

Please sign in to comment.