Skip to content

Commit

Permalink
[#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 bfb376f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,14 @@ 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: >-
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 bfb376f

Please sign in to comment.