readme の minikube 起動時の手順を akka-management 使用する手順に変更 #29
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 |