Skip to content

v0.6.0

v0.6.0 #21

Workflow file for this run

name: Build
on:
pull_request:
branches: [ '**' ]
push:
branches: [ '**' ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
scala: [ 2.12, 2.13 ]
java:
- adopt@1.8
platform: [ jvm ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Java and Scala
uses: olafurpg/setup-scala@v12
with:
java-version: ${{ matrix.java }}
- name: Set up Aerospike Database
uses: reugn/github-action-aerospike@v1
- name: Cache SBT
uses: actions/cache@v3
with:
path: |
~/.ivy2/cache
~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}
- name: Build and test
run: sbt ++${{ matrix.scala }} test