CallableIdにする必要がないためNameで保持するように変更しリファクタ #32
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: Build and Test Workflow | |
on: [ push, pull_request ] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
- name: Build and publish to Maven local (root) | |
run: ./gradlew publishToMavenLocal | |
- name: Build and publish to Maven local (back-in-time.library) | |
run: ./gradlew -p back-in-time.library publishToMavenLocal | |
- name: Run JVM tests and Debug Unit Tests (test directory) | |
run: ./gradlew -p test jvmTest testDebugUnitTest |