chore(deps): update actions/setup-java action to v5 (#179) #385
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: | |
push: | |
branches: [ 'main' ] | |
jobs: | |
lint: | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout current branch | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Set up Java | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 17 | |
check-latest: true | |
- name: Cache Scala dependencies | |
uses: coursier/cache-action@v6 | |
- name: Check code formatting | |
run: ./sbt check | |
test: | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [ "8", "11", "17", "21" ] | |
scala: [ "2.12.20", "2.13.16", "3.7.0" ] | |
steps: | |
- name: Checkout current branch | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 0 | |
- name: Set up Java | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 17 | |
check-latest: true | |
- name: Cache Scala dependencies | |
uses: coursier/cache-action@v6 | |
- name: Run tests | |
run: ./sbt ++${{ matrix.scala }} test | |
publish-local: | |
runs-on: ubuntu-24.04 | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout current branch | |
uses: actions/[email protected] | |
- name: Setup Java | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 17 | |
check-latest: true | |
- name: Cache scala dependencies | |
uses: coursier/cache-action@v6 | |
- name: Check that building packages works | |
run: ./sbt +publishLocal | |
ci: | |
runs-on: ubuntu-24.04 | |
needs: [ lint, test, publish-local ] | |
steps: | |
- name: Aggregate outcomes | |
run: echo "build succeeded" |