Bump org.junit.jupiter:junit-jupiter from 5.11.0 to 5.11.4 #101
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 Checks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
run-detekt: | |
name: Run Detekt on the detekt rules | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Run Detekt on the detekt rules | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: assemble detektMain |