Truncate large error messages and allow testing for more types of errors #35
Workflow file for this run
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: FormatCheck | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: '1' | |
- uses: actions/checkout@v1 | |
- name: Format check | |
shell: julia --color=yes {0} | |
run: | | |
using Pkg | |
# If you update the version, also update the style guide docs. | |
Pkg.add(PackageSpec(name="JuliaFormatter", version="1")) | |
using JuliaFormatter | |
format("src", verbose=true) | |
format("test", verbose=true) | |
out = String(read(Cmd(`git diff`))) | |
if isempty(out) | |
exit(0) | |
end | |
@error "Some files have not been formatted!" | |
write(stdout, out) | |
exit(1) |