This repository has been archived by the owner on Apr 21, 2024. It is now read-only.
Revert "fix(deps): update dependency com.fasterxml.jackson.core:jackson-annotations to v2.17.0" #14
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: PR Check | |
on: | |
pull_request: | |
jobs: | |
test: | |
permissions: | |
contents: write | |
discussions: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Setup jdk 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
- uses: gradle/wrapper-validation-action@v2 | |
- name: Fix Gradle permission | |
run: chmod +x gradlew | |
- name: Test with Gradle | |
run: ./gradlew buildArtifacts test --stacktrace --no-daemon |