File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 10
10
types :
11
11
- synchronize
12
12
- labeled
13
+ push :
14
+ # We want this workflow to always run on release branches as well as
15
+ # all tags since we want to be really sure we don't introduce
16
+ # regressions on the release branches, and it's also important to run
17
+ # this on pre-release and release tags.
18
+ branches :
19
+ - ' v*'
20
+ tags :
21
+ - ' *'
22
+
23
+ concurrency :
24
+ group : ${{ github.workflow }}-${{ github.ref }}
25
+ cancel-in-progress : true
13
26
14
27
jobs :
15
28
test_more_architectures :
21
34
name : Test on ${{ matrix.arch }}
22
35
# Don't run on forks of the repository.
23
36
if : (github.repository == 'mhvk/baseband' && (github.event_name == 'schedule' || contains(github.event.pull_request.labels.*.name, 'Extra CI')))
24
- runs-on : ubuntu-latest
37
+ runs-on : ubuntu-22.04
25
38
env :
26
39
apt_packages : git python3-astropy python3-pip
27
40
You can’t perform that action at this time.
0 commit comments