Skip to content

Commit

Permalink
chore: make github actions single concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaAK committed Feb 1, 2024
1 parent 8fd7c06 commit b321e9c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Coverage

on: push

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

jobs:
Coverage:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/credo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Credo

on: push

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

jobs:
Credo:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/dialyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: Dialyzer

on: push

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

jobs:
Dialyzer:
runs-on: ubuntu-latest
Expand Down

0 comments on commit b321e9c

Please sign in to comment.