Skip to content

Commit

Permalink
move concurrency block
Browse files Browse the repository at this point in the history
  • Loading branch information
aSemy committed Jul 25, 2022
1 parent 98671f4 commit fbd393a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gradle.yml
Expand Up @@ -6,6 +6,10 @@ on:
pull_request:
branches: [ master ]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
tests:
strategy:
Expand All @@ -16,11 +20,6 @@ jobs:
# in case one JDK fails, we still want to see results from others
fail-fast: false
runs-on: ubuntu-latest

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
Expand All @@ -41,6 +40,7 @@ jobs:
uses: eskatos/gradle-command-action@v1
with:
arguments: test --stacktrace -Pkotlin.version=${{ matrix.kotlin-version }} -Pkotlin.ir.enabled=${{ matrix.kotlin-ir-enabled }}

android-instrumented-tests:
runs-on: macos-latest
strategy:
Expand Down

0 comments on commit fbd393a

Please sign in to comment.