We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18469d3 commit 67a4ff5Copy full SHA for 67a4ff5
1 file changed
.github/workflows/autofix.yml
@@ -0,0 +1,19 @@
1
+name: 'autofix.ci'
2
+on:
3
+ pull_request:
4
+jobs:
5
+ autofix:
6
+ if: github.event.pull_request.draft == false
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v4
10
+
11
+ - uses: actions/setup-java@v4
12
+ with:
13
+ distribution: 'temurin'
14
+ java-version: 25
15
16
+ - name: Run autoformat
17
+ run: ./mill mill.scalalib.scalafmt.ScalafmtModule/reformatAll __.sources
18
19
+ - uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c
0 commit comments