Issue 5256: Refactored MekHQ Unit's Gunners to be Set to ensure gunners are unique #6188
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL" | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
paths-ignore: | |
- "**/*.mtf" | |
- "**/*.blk" | |
- "**/*.pdf" | |
- "**/*.xml" | |
jobs: | |
analyze: | |
name: Analyze | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
java-distribution: [temurin] | |
java-version: [17] | |
fail-fast: false | |
runs-on: [ubuntu-latest] | |
steps: | |
- name: "Check out MekHQ" | |
uses: actions/checkout@v4 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: java-kotlin | |
build-mode: none | |
queries: security-and-quality | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |