[#13126] Update timezone db (#13128) #334
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: Component Tests (JDK 17) | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Run Backend Linting | |
run: ./gradlew lint --continue | |
component-testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Update Property File | |
run: mv src/test/resources/test.ci-ubuntu-latest.properties src/test/resources/test.properties | |
- name: Run Solr search service | |
run: docker-compose run -d -p 8983:8983 solr | |
- name: Run Backend Tests | |
run: ./gradlew createConfigs componentTests --continue |