Merge pull request #13 from tylerjthomas9/dev #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Format Check | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- 'main' | |
tags: '*' | |
pull_request: | |
jobs: | |
format-check: | |
name: Format check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: julia-actions/setup-julia@latest | |
- uses: actions/checkout@v4 | |
- name: Instantiate `format` environment and format | |
run: | | |
julia --project=format --color=yes -e 'using Pkg; Pkg.instantiate()' | |
julia --project=format --color=yes 'format/run.jl' | |
- name: Format check | |
run: | | |
julia -e ' | |
out = read(`git diff --name-only`, String) | |
if out == "" | |
exit(0) | |
else | |
@error "Some files have not been formatted!" | |
write(stdout, out) | |
exit(1) | |
end' |