Skip to content

[CI Broken] Format check failing on master branch #116

@ChrisRackauckas-Claude

Description

@ChrisRackauckas-Claude

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:

  1. README.md
  2. src/MultiScaleArrays.jl
  3. 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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions