Skip to content

Adjust body part hit difficulty to make critical hits matter for NPCs #6335

Adjust body part hit difficulty to make critical hits matter for NPCs

Adjust body part hit difficulty to make critical hits matter for NPCs #6335

Workflow file for this run

name: astyle
on:
pull_request_target:
paths: [".github/workflows/astyle.yml", "Makefile", ".astylerc", "**.cpp", "**.h", "**.c"]
jobs:
skip-duplicates:
continue-on-error: true
runs-on: ubuntu-22.04
# Map a step output to a job output
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@master
with:
cancel_others: "true"
paths: '[".github/workflows/astyle.yml", "Makefile", ".astylerc", "**.cpp", "**.h", "**.c"]'
astyle-code:
name: astyle check
needs: skip-duplicates
if: ${{ needs.skip-duplicates.outputs.should_skip != 'true' }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: install dependencies
run: sudo apt-get install astyle
- name: astyle check
run: make astyle-check
- name: Display Corrections
if: failure()
run: |
make astyle
git diff