Add route to search trend #760
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: "Gradle dependencies" | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Dependencies | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # Dependency Submission API | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # We need the tags | |
- name: Setup JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'graalvm' | |
- name: Setup Gradle to generate and submit dependency graphs | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
dependency-graph: generate-and-submit | |
- name: Build the project | |
run: ./gradlew build -x test |