Default CLI workspace root to cwd and generate a stable session UUID for DevTools integration OOTB #12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 'autofix.ci' | |
| on: | |
| pull_request: | |
| jobs: | |
| autofix: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: coursier/setup-action@main | |
| with: | |
| jvm: temurin@17 | |
| apps: scala-cli | |
| - name: Cache Coursier | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/coursier/v1 | |
| key: coursier-${{ runner.os }}-${{ hashFiles('build.mill', '**/package.mill') }} | |
| restore-keys: coursier-${{ runner.os }}- | |
| - name: Run autoformat | |
| run: ./mill mill.scalalib.scalafmt.ScalafmtModule/reformatAll __.sources | |
| - uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c |