We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5825712 commit 361c707Copy full SHA for 361c707
.github/workflows/Downstream.yml
@@ -1,10 +1,19 @@
1
name: IntegrationTest
2
on:
3
push:
4
- branches: [main]
5
- tags: [v*]
+ tags:
+ - '*'
6
+ branches:
7
+ - 'main'
8
pull_request:
-
9
10
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
+
17
jobs:
18
test:
19
name: ${{ matrix.package.repo }}/${{ matrix.julia-version }}
test/HarmonicVariable.jl
@@ -75,5 +75,5 @@ end
75
76
# Test variable substitution
77
new_hv = substitute_all(hv, Dict(ω => new_var))
78
- @test isequal(new_hv.ω,new_var)
+ @test isequal(new_hv.ω, new_var)
79
end
0 commit comments