Create MorphemeImpl.java #228
Workflow file for this run
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 | |
on: | |
push: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java-version: [ "8.0.392+8", "11.0.4", "17.0" ] | |
steps: | |
- name: Checkout project sources | |
uses: actions/checkout@v3 | |
with: | |
# https://github.com/diffplug/spotless/issues/1242 | |
fetch-depth: 0 | |
- name: Set up JDK Using Matrix | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: "zulu" | |
cache: gradle | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Download or get from cache Sudachi dictionary | |
id: download-and-cache-sudachi-dictionary | |
uses: ./.github/actions/download-and-cache-sudachi-dictionary | |
- name: Build | |
run: ./gradlew build | |
- name: Run unit tests | |
run: ./gradlew clean test | |
- name: Run integration tests | |
run: ./gradlew clean integrationTest | |
- name: Run functional tests | |
run: ./gradlew clean functionalTest | |