Skip to content

Commit 67a4ff5

Browse files
authored
. (#122)
1 parent 18469d3 commit 67a4ff5

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/autofix.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)