-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: use julia-actions/julia-format action
- Loading branch information
Showing
2 changed files
with
26 additions
and
41 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: "Format: Julia" | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "**.jl" | ||
- ".JuliaFormatter.toml" | ||
pull_request: | ||
|
||
env: | ||
CI: true | ||
|
||
jobs: | ||
format-julia: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# - uses: julia-actions/julia-format@v3 | ||
- uses: zot/julia-format@zot/restore-file-list | ||
with: | ||
# Version compat for JuliaFormatter.jl (default: '1') | ||
# E.g. set to '1.0.54' if you need to use JuliaFormatter.jl v1.0.54 | ||
version: '1' | ||
# GitHub PR label that enabled formatting suggestions. | ||
# Leave this unset or empty to show suggestions for all PRs. | ||
suggestion-label: 'format-suggest' |
This file was deleted.
Oops, something went wrong.