Skip to content

Commit 084f1ee

Browse files
committed
Try updating python to avoid error
1 parent 306fbac commit 084f1ee

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/ci_cron_monthly.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,19 @@ on:
1010
types:
1111
- synchronize
1212
- 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
1326

1427
jobs:
1528
test_more_architectures:
@@ -21,7 +34,7 @@ jobs:
2134
name: Test on ${{ matrix.arch }}
2235
# Don't run on forks of the repository.
2336
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
2538
env:
2639
apt_packages: git python3-astropy python3-pip
2740

0 commit comments

Comments
 (0)