Update sbt-scalafix to 0.14.3 #84
Workflow file for this run
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: Scalafix Migration Rules | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'scalafix/**' | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'scalafix/**' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| jobs: | |
| scalafix: | |
| name: Test | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 60 | |
| steps: | |
| - name: Checkout current branch (full) | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Java (corretto@11) | |
| id: setup-java-corretto-11 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: corretto | |
| java-version: 11 | |
| cache: sbt | |
| - name: sbt update | |
| if: steps.setup-java-corretto-11.outputs.cache-hit == 'false' | |
| run: sbt update | |
| working-directory: scalafix | |
| - name: Test | |
| run: sbt test | |
| working-directory: scalafix |