Skip to content

feat: Refactor imports to use monadicSyntax and enhance code organiza… #25

feat: Refactor imports to use monadicSyntax and enhance code organiza…

feat: Refactor imports to use monadicSyntax and enhance code organiza… #25

Workflow file for this run

name: Continuous Integration
on:
push:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
run:
name: unit test
strategy:
matrix:
java-version: [17]
runs-on: ubuntu-latest
steps:
- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Java and SBT
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java-version }}
cache: sbt
- uses: coursier/cache-action@v6
- uses: sbt/setup-sbt@v1
- name: unit test
run: sbt test