Bump com.github.navikt:rapids-and-rivers from 2024041714471713358051.71746f05c18e to 2024061408021718344972.64ebbdb34321 #83
Workflow file for this run
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: Build Pull Request | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- '.gitignore' | |
- 'LICENSE' | |
- 'CODEOWNERS' | |
- 'kafka/*' | |
- 'alerts/*' | |
- '.github/**' | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gradle/wrapper-validation-action@v2 | |
- uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: temurin | |
cache: gradle | |
- name: Kjør tester | |
run: ./gradlew test | |
env: | |
GITHUB_TOKEN: ${{ secrets.READER_TOKEN }} |