We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 165437f commit 1f36952Copy full SHA for 1f36952
.JuliaFormatter.toml
@@ -0,0 +1 @@
1
+always_for_in = true
.github/workflows/ci.yml
@@ -31,10 +31,17 @@ jobs:
31
flags: Pkg.test
32
name: codecov-umbrella
33
34
+ # https://github.com/tkf/julia-code-style-suggesters
35
+ code-style:
36
+ if: always() && github.event.pull_request
37
+ runs-on: ubuntu-latest
38
+ steps:
39
+ - uses: tkf/julia-code-style-suggesters@v1
40
+
41
# A job that succeeds if and only if all jobs succeed.
42
all-success:
43
if: always() && github.event.pull_request
- needs: test
44
+ needs: [test, code-style]
45
runs-on: ubuntu-latest
46
steps:
47
# https://github.com/tkf/merge-conclusions-action
0 commit comments