15 lines
269 B
YAML
15 lines
269 B
YAML
|
name: Check Formatting of Files
|
||
|
on:
|
||
|
- push
|
||
|
- workflow_dispatch
|
||
|
|
||
|
jobs:
|
||
|
Check-Formatting:
|
||
|
runs-on: default
|
||
|
steps:
|
||
|
- name: Check out code
|
||
|
uses: actions/checkout@v3
|
||
|
|
||
|
- name: Check formatting
|
||
|
run: ./scripts/check-fmt-git-files.bash
|