Skip to content

Update scala-library, scala-reflect to 2.12.19 #250

Update scala-library, scala-reflect to 2.12.19

Update scala-library, scala-reflect to 2.12.19 #250

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags:
- "v*"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
SCALA_VERSION: ["2.12.19", "2.13.10"]
steps:
- uses: actions/checkout@v3
- uses: coursier/cache-action@v6
- uses: coursier/[email protected]
with:
jvm: 8
- run: |
sbtn ++$SCALA_VERSION test
sbtn ++$SCALA_VERSION mimaReportBinaryIssues
env:
SCALA_VERSION: ${{ matrix.SCALA_VERSION }}
publish:
needs: test
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: coursier/cache-action@v6
- uses: coursier/[email protected]
with:
jvm: 8
- name: Release
run: sbtn ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}