akka-management 利用時は akka.remote.artery.canonical を利用しないため固定値を取り除き、sb… #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI for sample | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "sample/**" | |
- ".github/workflows/sample.yml" | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "sample/**" | |
- ".github/workflows/sample.yml" | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: sample | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- uses: sbt/setup-sbt@v1 | |
- name: Check Format | |
run: sbt scalafmtCheck | |
- name: Build and Test | |
run: sbt -v +test |