Fix so Unhappiness allows negative Food #6548
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: Detekt | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
detekt: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
- name: Setup Detekt | |
id: setup_detekt | |
uses: peter-murray/setup-detekt@v2 | |
with: | |
detekt_version: '1.23.4' | |
- name: Detekt errors | |
run: detekt-cli --parallel --config .github/workflows/detekt_config/detekt-errors.yml | |
- name: Detekt warnings | |
run: detekt-cli --parallel --config .github/workflows/detekt_config/detekt-warnings.yml |