Skip to content

Add gaponenkoav as Developer #4

Add gaponenkoav as Developer

Add gaponenkoav as Developer #4

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches: [master, main]
jobs:
build:
name: Build and Test
strategy:
matrix:
scala: [3.1.3, 2.13.12]
runs-on: ubuntu-20.04
steps:
- name: Checkout current branch (full)
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Build project
run: sbt ++${{ matrix.scala }} test
scalafmt:
name: Scalafmt
strategy:
matrix:
scala: [3.1.3, 2.13.12]
runs-on: ubuntu-20.04
steps:
- name: Checkout current branch (fast)
uses: actions/[email protected]
- name: Scalafmt
run: sbt ++${{ matrix.scala }} scalafmtCheckAll