blob: 3c5d29b5c46451ab4b46ffa15c6f99060b81f7f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
name: Check Formatting (comment /format to auto-fix)
on:
pull_request:
branches: [master]
merge_group:
types: [checks_requested]
jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/format-setup
- run: ./extras/formatting.sh --check-only
|