Added ExCap custom overrides which will only affect ExCap weapons, no… #38
Workflow file for this run
This file contains hidden or 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: Code Quality Checks | |
| on: [ push, pull_request ] | |
| permissions: | |
| pull-requests: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Check IntelliJ Formatting | |
| uses: sidhant92/intellij-format-action@v1 | |
| with: | |
| tool_name: 'IntelliJ Diff' | |
| github_token: ${{ secrets.github_token }} | |
| fail_on_changes: true | |
| path: '.' | |
| file_mask: '*.java' |