Allow disable File Logger #61
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: "Run tests" | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' # This is the Ubuntu Default | |
java-version: '17' | |
- name: Run checks | |
if: success() || failure() | |
run: ./gradlew check | |
- name: Run Detekt | |
if: success() || failure() | |
run: ./gradlew detekt |