Skip to content

Commit

Permalink
Merge pull request #14 from jetbrains-academy/arseniy/improve-github-…
Browse files Browse the repository at this point in the history
…workflows

Improve GitHub workflows
  • Loading branch information
nbirillo committed Dec 1, 2023
2 parents cbc47b8 + dcbffd8 commit b969a78
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/gradle-build-with-detekt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,26 @@ name: Gradle Build With Detekt

on: [push, pull_request]

# Allow cancelling all previous runs for the same branch
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3.0.0
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3.0.0
uses: actions/setup-java@v3
with:
java-version: 17
distribution: liberica
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1.0.4
- uses: gradle/gradle-build-action@v2.1.5
- uses: gradle/gradle-build-action@v2
with:
arguments: build --stacktrace -PrunDetekt

12 changes: 9 additions & 3 deletions .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,26 @@ name: Gradle Build

on: [push, pull_request]

# Allow cancelling all previous runs for the same branch
# See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3.0.0
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3.0.0
uses: actions/setup-java@v3
with:
java-version: 17
distribution: liberica
- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation-action@v1.0.4
- uses: gradle/gradle-build-action@v2.1.5
- uses: gradle/gradle-build-action@v2
with:
arguments: build --stacktrace

0 comments on commit b969a78

Please sign in to comment.