Skip to content

Commit f2a25f5

Browse files
Merge #138
138: MassInstallAction: Install the BlueStyleFormatter workflow on this repository r=mattBrzezinski a=mattBrzezinski This pull request sets up the BlueStyleFormatter workflow on this repository. cc: `@mattBrzezinski` Co-authored-by: Matt Brzezinski <[email protected]>
2 parents 1eb00b4 + 09f9ea4 commit f2a25f5

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Format suggestions
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
format:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- uses: julia-actions/setup-julia@latest
12+
with:
13+
version: 1
14+
- run: |
15+
julia -e 'using Pkg; Pkg.add("JuliaFormatter")'
16+
julia -e 'using JuliaFormatter; format(".", BlueStyle(); verbose=true)'
17+
- uses: reviewdog/action-suggester@v1
18+
with:
19+
tool_name: JuliaFormatter
20+
fail_on_error: true

0 commit comments

Comments
 (0)