Skip to content

Can I attack?

Can I attack? #165

Workflow file for this run

name: Check Coding Style
on:
workflow_dispatch:
pull_request:
branches:
- main
jobs:
check-coding-syle:
name: Check Coding Style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# Check EditorConfig
- name: Install eclint
run: sudo npm install -g eclint
- name: Check EditorConfig style
run: eclint check $(git ls-files)
# Check Commit Messages
- name: Install pre-commit
run: pip install pre-commit
- name: Check commits
run: pre-commit run --hook-stage manual