Skip to content

Merge pull request #158 from nuhkoca/renovate/versions.gradle_plugin #318

Merge pull request #158 from nuhkoca/renovate/versions.gradle_plugin

Merge pull request #158 from nuhkoca/renovate/versions.gradle_plugin #318

Workflow file for this run

name: Market Tech Challenge Workflow
on:
pull_request:
branches:
- master
types: [ opened, synchronize, reopened, ready_for_review ]
push:
branches:
- master
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
check-style:
name: Check Style
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
- name: Run Static Code Analysis
run: ./gradlew lintDebug ktlintCheck detekt
- name: Execute Unit Tests
run: ./gradlew testDebugUnitTest