Skip to content

Github actions

Github actions #1

Workflow file for this run

name: Build and test
on:
push:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
- name: Start containers
run: docker-compose -f "docker-compose.yml" up -d --build
- name: Build and Test
run: sbt compile Test/compile