Skip to content

Update sbt-decent-scala to 1.1.44 #570

Update sbt-decent-scala to 1.1.44

Update sbt-decent-scala to 1.1.44 #570

Workflow file for this run

name: CI
on:
pull_request:
jobs:
ciJvms:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
java: [ '11', '17', '21' ]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 100
- name: Fetch tags
run: git fetch --depth=100 origin +refs/tags/*:refs/tags/*
- uses: actions/setup-java@v5.2.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
cache: 'sbt'
- name: sbt ci ${{ github.ref }}
run: ./sbt ci
ci:
if: always()
runs-on: ubuntu-24.04
needs: [ ciJvms ]
steps:
- uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}