Skip to content

Commit 361c707

Browse files
committed
add concurrency to IntegrationTest
1 parent 5825712 commit 361c707

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/Downstream.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
name: IntegrationTest
22
on:
33
push:
4-
branches: [main]
5-
tags: [v*]
4+
tags:
5+
- '*'
6+
branches:
7+
- 'main'
68
pull_request:
7-
9+
branches:
10+
- 'main'
11+
concurrency:
12+
# Skip intermediate builds: always.
13+
# Cancel intermediate builds: only if it is a pull request build.
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
16+
817
jobs:
918
test:
1019
name: ${{ matrix.package.repo }}/${{ matrix.julia-version }}

test/HarmonicVariable.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,5 @@ end
7575

7676
# Test variable substitution
7777
new_hv = substitute_all(hv, Dict(ω => new_var))
78-
@test isequal(new_hv.ω,new_var)
78+
@test isequal(new_hv.ω, new_var)
7979
end

0 commit comments

Comments
 (0)