From 84dbc4c3fd0c0fdd2e911e9ed5df2736e8109d67 Mon Sep 17 00:00:00 2001 From: Tobias Roeser Date: Mon, 3 Apr 2023 09:43:30 +0200 Subject: [PATCH] Reenabled CI checks: bin-compat and formatting --- .github/workflows/actions.yml | 62 +++++++++++++++++------------------ 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 92faeb2eded..b8894902350 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -92,37 +92,37 @@ jobs: - name: Run '${{ matrix.buildcmd }}' run: ${{ matrix.buildcmd }} -# test-bin-compat: -# strategy: -# fail-fast: false -# matrix: -# java-version: [8] -# buildcmd: -# - ./mill -i -k __.mimaReportBinaryIssues -# -# runs-on: ubuntu-latest -# # when doing milestone builds, this may be true -# continue-on-error: true -# -# steps: -# - uses: actions/checkout@v3 -# with: -# fetch-depth: 0 -# -# - uses: coursier/cache-action@v6 -# -# - uses: actions/setup-java@v3 -# with: -# java-version: ${{ matrix.java-version }} -# distribution: temurin -# -# - name: Prepare git config -# run: | -# git config --add user.name "Mill GithHub Actions" -# git config --add user.email "mill-ci@localhost" -# -# - name: Run '${{ matrix.buildcmd }}' -# run: ${{ matrix.buildcmd }} + checks: + strategy: + fail-fast: false + matrix: + java-version: [8] + buildcmd: + - ./mill -i -k mill.scalalib.scalafmt.ScalafmtModule/checkFormatAll __.sources + __.mimaReportBinaryIssues + + runs-on: ubuntu-latest + # when doing milestone builds, this may be true + continue-on-error: true + + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - uses: coursier/cache-action@v6 + + - uses: actions/setup-java@v3 + with: + java-version: ${{ matrix.java-version }} + distribution: temurin + + - name: Prepare git config + run: | + git config --add user.name "Mill GithHub Actions" + git config --add user.email "mill-ci@localhost" + + - name: Run '${{ matrix.buildcmd }}' + run: ${{ matrix.buildcmd }} test-windows: strategy: