Skip to content

Fix check code format wf #285

Fix check code format wf

Fix check code format wf #285

---
name: check_code_format
# yamllint disable-line rule:truthy
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
check_format_code:
name: check format code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: jiro4989/setup-nim-action@v2
- name: Format code
run: |
git clean -f -x -d -e ".nim_runtime"
nim prettyfy
- name: Fail if needs reformatting
run: |
echo ".nim_runtime" > .gitignore
if [[ $(git status --porcelain) ]]; then
echo "please reformat/prettyfy these files:"
git status --porcelain=v1
rm -vf .gitignore
exit 1
fi
rm -vf .gitignore
...