Skip to content

Update Mill to 0.11 #1319

Update Mill to 0.11

Update Mill to 0.11 #1319

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
jobs:
test:
runs-on: ${{ matrix.OS }}
strategy:
fail-fast: false
matrix:
OS: [ubuntu-latest, windows-latest]
JDK: [8]
SCALA: [2.13.12]
steps:
- name: Don't convert LF to CRLF during checkout
if: runner.os == 'Windows'
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- uses: coursier/[email protected]
with:
jvm: ${{ matrix.JDK }}
apps:
- run: ./mill -i "scala.scala-interpreter[$SCALA].test" "almond.ScalaKernelTests.stdin"
shell: bash
env:
SCALA: ${{ matrix.SCALA }}