Skip to content

Bump crate-ci/typos from 1.23.6 to 1.24.3 (#130) #53

Bump crate-ci/typos from 1.23.6 to 1.24.3 (#130)

Bump crate-ci/typos from 1.23.6 to 1.24.3 (#130) #53

Workflow file for this run

name: format-check
on:
push:
branches:
- 'main'
tags: '*'
pull_request:
jobs:
check-format:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: [1]
julia-arch: [x86]
os: [ubuntu-latest]
steps:
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- uses: actions/checkout@v4
- uses: julia-actions/cache@v2
- name: Install JuliaFormatter and format
run: |
julia -e 'using Pkg; Pkg.add(PackageSpec(name = "JuliaFormatter"))'
julia -e 'using JuliaFormatter; format(["src/P4est.jl", "src/pointerwrappers.jl", "test"])'
- name: Format check
run: |
julia -e '
out = Cmd(`git diff --name-only`) |> read |> String
if out == ""
exit(0)
else
@error "Some files have not been formatted !!!"
write(stdout, out)
exit(1)
end'