read sbt executable path from SBT_PATH env var to run SbtIdeaPluginIn… #172
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: sbt-idea-plugin build & test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build_and_test: | |
name: sbt-idea-plugin plugin Build & Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: sbt | |
- uses: sbt/setup-sbt@v1 | |
- uses: coursier/cache-action@v6 | |
- name: Compile & Test | |
run: sbt test |