feat(ci): add concurrency to test workflow

Enhance the GitHub Actions test workflow by adding concurrency 
settings.
This commit is contained in:
lumin 2024-12-21 21:58:26 +09:00 committed by lumin
parent 125e206047
commit 64a19e64f1

View file

@ -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