Skip to content

Commit

Permalink
Merge pull request #113 from invenia/massinstallaction/set-up-BlueSty…
Browse files Browse the repository at this point in the history
…leFormatter

MassInstallAction: Install the BlueStyleFormatter workflow on this repository
  • Loading branch information
oxinabox authored Aug 17, 2021
2 parents aa6c1f7 + 90fcd42 commit 04b83b3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/blue_style_formatter.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 04b83b3

Please sign in to comment.