Skip to content

Commit b974ba1

Browse files
committed
Prevent concurrent execution of tests on GH actions
1 parent 1a84372 commit b974ba1

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
name: Release
2+
23
on:
34
push:
45
tags:
56
- '*.*.*'
7+
8+
concurrency:
9+
group: java-exaroton-api
10+
611
jobs:
712
release:
813
runs-on: ubuntu-latest

.github/workflows/test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
name: Test
2+
23
on:
34
push:
45
branches:
56
- '*'
67
pull_request:
8+
9+
concurrency:
10+
group: java-exaroton-api
11+
712
jobs:
813
test:
914
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)