From f2a8055d659f10d016dffdbfc7546fe94fa39e54 Mon Sep 17 00:00:00 2001 From: Matt Brzezinski Date: Mon, 16 Aug 2021 14:33:21 -0500 Subject: [PATCH] Automated commit made by MassInstallAction.jl --- .github/workflows/blue_style_formatter.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/blue_style_formatter.yml diff --git a/.github/workflows/blue_style_formatter.yml b/.github/workflows/blue_style_formatter.yml new file mode 100644 index 0000000..4c2fd8d --- /dev/null +++ b/.github/workflows/blue_style_formatter.yml @@ -0,0 +1,20 @@ +name: Format suggestions + +on: + pull_request: + +jobs: + format: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: julia-actions/setup-julia@latest + with: + version: 1 + - run: | + julia -e 'using Pkg; Pkg.add("JuliaFormatter")' + julia -e 'using JuliaFormatter; format(".", BlueStyle(); verbose=true)' + - uses: reviewdog/action-suggester@v1 + with: + tool_name: JuliaFormatter + fail_on_error: true