Update xz to 1.11 (#607) #507
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: CI | |
| on: | |
| pull_request: | |
| paths: | |
| - '**.scala' | |
| - '**.java' | |
| - '**.sbt' | |
| - '.scalafmt.conf' | |
| - '.github/workflows/test.yml' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '**.scala' | |
| - '**.java' | |
| - '**.sbt' | |
| - '.scalafmt.conf' | |
| jobs: | |
| code_format: | |
| name: Code format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: scalafmt test | |
| run: ./sbt "+ scalafmtCheckAll" | |
| test_sbt1_plugin: | |
| name: plugin test (sbt 1.x) | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: ubuntu-latest | |
| distribution: temurin | |
| java: 21 | |
| - os: ubuntu-latest | |
| distribution: temurin | |
| java: 24 | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: "${{ matrix.distribution }}" | |
| java-version: "${{ matrix.java }}" | |
| - name: scripted tests (sbt 1.x) | |
| run: ./sbt "++ 2.12 test" "++ 2.12 scripted" | |
| # test_sbt2_plugin: | |
| # name: plugin test (sbt 2.x) | |
| # strategy: | |
| # fail-fast: false | |
| # matrix: | |
| # include: | |
| # - os: ubuntu-latest | |
| # distribution: temurin | |
| # java: 21 | |
| # - os: ubuntu-latest | |
| # distribution: temurin | |
| # java: 24 | |
| # runs-on: ${{ matrix.os }} | |
| # steps: | |
| # - uses: actions/checkout@v5 | |
| # - uses: actions/setup-java@v5 | |
| # with: | |
| # distribution: "${{ matrix.distribution }}" | |
| # java-version: "${{ matrix.java }}" | |
| # - name: scripted tests (sbt 2.x) | |
| # run: ./sbt "++ 3 test" "++ 3 scripted" |