Fixed the Tomcat download URL in the :tomcat-util module. #2787
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
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
# os: [ ubuntu-latest, macos-latest, windows-latest ] | |
os: [ ubuntu-latest, windows-latest ] | |
# Test on LTS 8, 11, 17, 21. | |
java: [ 8, 21 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java }} | |
- uses: gradle/actions/setup-gradle@v4 | |
- run: ./gradlew build |