Skip to content

Commit

Permalink
Add concurrency limit to test + fuzz
Browse files Browse the repository at this point in the history
  • Loading branch information
ichard26 committed Apr 10, 2022
1 parent 7c6b598 commit 05c7dd1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/fuzz.yml
Expand Up @@ -2,6 +2,10 @@ name: Fuzz

on: [push, pull_request]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true

jobs:
build:
# We want to run on external PRs, but not on our own internal PRs as they'll be run
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -11,6 +11,10 @@ on:
- "docs/**"
- "*.md"

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true

jobs:
main:
# We want to run on external PRs, but not on our own internal PRs as they'll be run
Expand Down

0 comments on commit 05c7dd1

Please sign in to comment.