Plug non-contiguous memory layout gaps #69
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: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 25 | |
| - name: Run autoformat | |
| run: ./mill mill.scalalib.scalafmt.ScalafmtModule/reformatAll __.sources | |
| - uses: autofix-ci/action@ff86a557419858bb967097bfc916833f5647fa8c |