Skip to content

Update

Update #19

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: ['main']
# release:
# types:
# - published
jobs:
build:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
java: ['[email protected]']
scala: ['2.13.12', '3.3.1']
steps:
- uses: actions/[email protected]
- uses: olafurpg/setup-scala@v10
with:
java-version: ${{ matrix.java }}
- name: Cache scala dependencies
uses: coursier/cache-action@v5
- name: Lint code
run: sbt check
- name: Run tests
run: sbt ++${{ matrix.scala }}! test
# publish:
# runs-on: ubuntu-20.04
# needs: [build, website]
# if: github.event_name != 'pull_request'
# steps:
# - uses: actions/[email protected]
# with:
# fetch-depth: 0
# - uses: olafurpg/setup-scala@v10
# - 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 }}