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 c612b1e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yaml
Expand Up @@ -42,7 +42,16 @@ 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
shell: bash
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 c612b1e

Please sign in to comment.