Expand supported RayError
exceptions
#274
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: Format Check | |
on: | |
push: | |
branches: | |
- main | |
tags: ["*"] # Triggers from tags ignore the `paths` filter: https://github.com/orgs/community/discussions/26273 | |
paths: | |
- "**/*.jl" | |
- ".github/workflows/FormatCheck.yml" | |
pull_request: | |
paths: | |
- "**/*.jl" | |
- ".github/workflows/FormatCheck.yml" | |
concurrency: | |
# Skip intermediate builds: always. | |
# Cancel intermediate builds: only if it is a pull request build. | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
jobs: | |
format-check: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
version: | |
- "1" | |
os: | |
- ubuntu-latest | |
arch: | |
- x64 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: julia-actions/cache@v1 | |
with: | |
cache-name: "${{ github.workflow }}-${{ github.job }}-${{ matrix.pkg.name }}-${{ matrix.version }}-${{ matrix.os }}-${{ matrix.arch }}" | |
cache-compiled: true | |
- name: Install JuliaFormatter | |
shell: julia --color=yes {0} | |
run: | | |
using Pkg | |
Pkg.add(PackageSpec(name="JuliaFormatter", version="1")) | |
- name: Check formatting | |
id: check | |
shell: julia --color=yes {0} | |
run: | | |
using JuliaFormatter | |
# JuliaFormatter's `format(".")` hangs when traversing our directory structure | |
formatted = true | |
for (root, dirs, files) in walkdir(".") | |
for file in files | |
if endswith(file, ".jl") | |
global formatted &= format_file(joinpath(root, file); verbose=true) | |
end | |
end | |
end | |
if !formatted | |
@error "Found some unformatted files:\n" * read(`git diff --name-only`, String) | |
end | |
open(ENV["GITHUB_OUTPUT"], "a") do io | |
println(io, "formatted=$formatted") | |
end | |
- uses: reviewdog/action-suggester@v1 | |
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.draft == false }} | |
with: | |
tool_name: JuliaFormatter | |
fail_on_error: true | |
- name: Fail if not formatted | |
if: ${{ steps.check.outputs.formatted != 'true' }} | |
run: exit 1 |