Skip to content

Commit

Permalink
[groovy#282] install groovy in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarwell committed Oct 15, 2023
1 parent e5c020f commit baaff2a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,15 @@ jobs:
with:
distribution: temurin
java-version: 17
- name: install groovy
shell: bash
run: >
curl -s "https://get.sdkman.io" | bash;
source "$HOME/.sdkman/bin/sdkman-init.sh";
sdk install groovy ${{ matrix.groovy-version }}
- name: full test
run: >-
source "$HOME/.sdkman/bin/sdkman-init.sh";
sdk use groovy ${{ matrix.groovy-version }};
./mvnw ${MAVEN_ARGS} ${MVN_GROOVY_GROUP_ID} ${MVN_GROOVY_VERSION}
clean install invoker:install invoker:run

0 comments on commit baaff2a

Please sign in to comment.