Skip to content

chore: update workflows from templates #71

chore: update workflows from templates

chore: update workflows from templates #71

Workflow file for this run

name: Check
on:
pull_request:
branches: [ main, stable-* ]
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
task: [ detekt, ktlintCheck, lint ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: 11
- name: Check ${{ matrix.task }}
run: ./gradlew ${{ matrix.task }}