Update mill-tpolecat to 0.3.5 #136
This file contains 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: CI | |
on: | |
pull_request: | |
branches: ["*"] | |
push: | |
branches: ["main"] | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Cache | |
uses: coursier/cache-action@v6 | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
distribution: adopt | |
java-version: 11 | |
- name: Setup Mill | |
uses: jodersky/setup-mill@master | |
with: | |
mill-version: 0.10.7 | |
- name: Run tests | |
run: | | |
mill -k --disable-ticker __.resolvedIvyDeps && | |
mill -k --disable-ticker mill.scalalib.scalafmt.ScalafmtModule/checkFormatAll __.sources && | |
mill -j 0 -k --disable-ticker __.test |