Summary
The CI Format Check is failing on the master branch. Several source files do not comply with SciMLStyle formatting requirements.
Failing CI Job
Files Requiring Formatting
The following files need to be formatted with JuliaFormatter v2 using SciMLStyle:
README.md
src/MultiScaleArrays.jl
src/diffeq.jl
Error Message from CI
Format check failed. Please format the following file(s) with JuliaFormatter v2.
README.md
src/MultiScaleArrays.jl
src/diffeq.jl
Root Cause
The master branch contains files that don't comply with the SciMLStyle formatting requirements. This causes the format check to fail on any PR, regardless of what changes the PR contains.
Suggested Fix
Run the following Julia code to fix the formatting:
using Pkg
Pkg.add("JuliaFormatter")
using JuliaFormatter
format("README.md", SciMLStyle())
format("src/MultiScaleArrays.jl", SciMLStyle())
format("src/diffeq.jl", SciMLStyle())
Then commit and push the formatted files.
Discovery
This issue was discovered during an automated CI health check (PR #115).
cc @ChrisRackauckas
🤖 This issue was automatically generated by CI health monitoring.
Summary
The CI Format Check is failing on the master branch. Several source files do not comply with SciMLStyle formatting requirements.
Failing CI Job
Files Requiring Formatting
The following files need to be formatted with
JuliaFormatter v2usingSciMLStyle:README.mdsrc/MultiScaleArrays.jlsrc/diffeq.jlError Message from CI
Root Cause
The master branch contains files that don't comply with the SciMLStyle formatting requirements. This causes the format check to fail on any PR, regardless of what changes the PR contains.
Suggested Fix
Run the following Julia code to fix the formatting:
Then commit and push the formatted files.
Discovery
This issue was discovered during an automated CI health check (PR #115).
cc @ChrisRackauckas
🤖 This issue was automatically generated by CI health monitoring.