Skip to content

Commit

Permalink
better format CI
Browse files Browse the repository at this point in the history
try another format github action

turn on formatter in PR
  • Loading branch information
oameye committed Oct 6, 2024
1 parent 06115ab commit c220516
Showing 1 changed file with 32 additions and 11 deletions.
43 changes: 32 additions & 11 deletions .github/workflows/Format.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,41 @@
name: Formatter
name: format-check

on: [pull_request]
on:
push:
branches:
- 'main'
tags: '*'
pull_request:

jobs:
build:
runs-on: ubuntu-latest
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
# This will use the latest version by default but you can set the version like so:
#
# julia -e 'using Pkg; Pkg.add(PackageSpec(name="JuliaFormatter", version="0.13.0"))'
run: |
julia -e 'using Pkg; Pkg.add(PackageSpec(name="JuliaFormatter"))'
julia -e 'using JuliaFormatter; format(".", verbose=true)'
- name: Format check
run: |
julia -e 'import Pkg; Pkg.add("JuliaFormatter")'
julia -e '
using JuliaFormatter
result = format(".")
if result == false
error("Formatting failed")
end
'
out = Cmd(`git diff`) |> read |> String
if out == ""
exit(0)
else
@error "Some files have not been formatted !!!"
write(stdout, out)
exit(1)
end'

0 comments on commit c220516

Please sign in to comment.