Skip to content

Update sbt-bloop to 1.5.11 #836

Update sbt-bloop to 1.5.11

Update sbt-bloop to 1.5.11 #836

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: ['master', 'zio2-interop-ce3']
release:
types:
- published
jobs:
lint:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
steps:
- name: Checkout current branch
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Scala and Java
uses: olafurpg/setup-scala@v10
- name: Cache scala dependencies
uses: coursier/cache-action@v5
- name: Lint code
run: sbt check
test:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
java: ['[email protected]', '[email protected]']
scala: ['2.12.17', '2.13.10', '3.3.0']
platform: ['JVM', 'JS']
steps:
- name: Checkout current branch
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Scala and Java
uses: olafurpg/setup-scala@v10
with:
java-version: ${{ matrix.java }}
- name: Cache scala dependencies
uses: coursier/cache-action@v5
- name: Run tests
if: matrix.scala != '3.3.0'
run: sbt ++${{ matrix.scala }}! test${{ matrix.platform }}
- name: Run dotty tests
if: matrix.scala == '3.3.0' && matrix.platform == 'JVM'
run: sbt ++${{ matrix.scala }}! testJVM
ci:
runs-on: ubuntu-20.04
needs: [lint, test]
steps:
- name: Aggregate outcomes
run: echo "build succeeded"
publish:
runs-on: ubuntu-20.04
needs: [ci]
if: github.event_name != 'pull_request'
steps:
- name: Checkout current branch
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Scala and Java
uses: olafurpg/setup-scala@v10
- name: Cache scala dependencies
uses: coursier/cache-action@v5
- name: Release artifacts
run: sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}