[Kword] Rewrite plugin in kotlin (#224) #846
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 | |
on: | |
# Trigger the workflow on push only for the master branch | |
push: | |
branches: | |
- master | |
# Trigger the workflow on any pull requests | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Run prettier | |
run: npx prettier --check . | |
- name: Gradle Cache | |
uses: actions/cache@v3 | |
with: | |
key: gradle-${{ hashFiles('**/gradle.properties') }} | |
restore-keys: gradle- | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew check --parallel |