Skip to content

Commit

Permalink
Try updating python to avoid error
Browse files Browse the repository at this point in the history
  • Loading branch information
mhvk committed Sep 20, 2024
1 parent 306fbac commit 084f1ee
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/ci_cron_monthly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,19 @@ on:
types:
- synchronize
- labeled
push:
# We want this workflow to always run on release branches as well as
# all tags since we want to be really sure we don't introduce
# regressions on the release branches, and it's also important to run
# this on pre-release and release tags.
branches:
- 'v*'
tags:
- '*'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test_more_architectures:
Expand All @@ -21,7 +34,7 @@ jobs:
name: Test on ${{ matrix.arch }}
# Don't run on forks of the repository.
if: (github.repository == 'mhvk/baseband' && (github.event_name == 'schedule' || contains(github.event.pull_request.labels.*.name, 'Extra CI')))
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
apt_packages: git python3-astropy python3-pip

Expand Down

0 comments on commit 084f1ee

Please sign in to comment.