akka.cluster.seed-nodes は akka-management を利用しない場合のみ必要なため、デフォルト値をなくす #28
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 |