Fix the retaliation of archers attacked by an ally under the influence of Berserker or Hypnotize spells, improve the AI usage of Hypnotize spell in general #9734
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: Pull Request | |
on: | |
pull_request: | |
branches: [ master ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
style: | |
name: Code style check | |
uses: ./.github/workflows/code_style_check.yml | |
clang: | |
name: Clang Analyzer | |
needs: | |
- style | |
uses: ./.github/workflows/clang_analyzer.yml | |
iwyu: | |
name: IWYU | |
needs: | |
- style | |
uses: ./.github/workflows/iwyu.yml | |
msvc: | |
name: MSVC | |
needs: | |
- style | |
uses: ./.github/workflows/msvc.yml | |
sonarcloud: | |
name: SonarCloud Analyzer | |
needs: | |
- style | |
uses: ./.github/workflows/sonarcloud.yml | |
secrets: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
android: | |
name: Android | |
needs: | |
- msvc | |
uses: ./.github/workflows/android.yml | |
cmake: | |
name: CMake | |
needs: | |
- msvc | |
uses: ./.github/workflows/cmake.yml | |
make: | |
name: Make | |
needs: | |
- msvc | |
uses: ./.github/workflows/make.yml |