Skip to content

Updating gitignore to catch the Claude files #2339

Updating gitignore to catch the Claude files

Updating gitignore to catch the Claude files #2339

name: "CodeQL"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
paths-ignore:
- "**/*.pdf"
jobs:
analyze:
name: Analyze
strategy:
fail-fast: false
runs-on: [ ubuntu-latest ]
steps:
- name: "Check out MegaMekLab"
uses: actions/checkout@v6
with:
path: megameklab
- name: Checkout MegaMek
uses: actions/checkout@v6
with:
repository: MegaMek/megamek
ref: main
path: megamek
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: java-kotlin
queries: security-and-quality
build-mode: none
config: |
paths:
- megameklab
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4