Skip to content

Commit

Permalink
feat(ci): add concurrency to test workflow
Browse files Browse the repository at this point in the history
Enhance the GitHub Actions test workflow by adding concurrency 
settings.
  • Loading branch information
l-lumin committed Dec 22, 2024
1 parent 125e206 commit 64a19e6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: tests
on: [pull_request]

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

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

0 comments on commit 64a19e6

Please sign in to comment.