We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e9ffca commit 519455fCopy full SHA for 519455f
.github/workflows/code-style.yml
@@ -13,15 +13,14 @@ jobs:
13
format:
14
runs-on: ubuntu-latest
15
steps:
16
- - uses: actions/checkout@v2
17
- - uses: julia-actions/setup-julia@latest
18
- with:
19
- version: 1
+ - uses: actions/checkout@v4
+ - uses: julia-actions/setup-julia@v1212
20
- run: |
21
- julia -e 'using Pkg; Pkg.add("JuliaFormatter")'
22
- julia -e 'using JuliaFormatter; format("."; verbose=true)'
+ julia --color=yes -e 'using Pkg; Pkg.add("JuliaFormatter")'
+ julia --color=yes -e 'using JuliaFormatter; format("."; verbose=true)'
23
- uses: reviewdog/action-suggester@v1
24
with:
25
tool_name: JuliaFormatter
+ github_token: ${{ secrets.REVIEWDOG_TOKEN }}
26
fail_on_error: true
27
filter_mode: added
0 commit comments