Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci_crontests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
# Run this job on release tags, but not on pushes to the main branch
tags:
- '*'
- '*'
schedule:
# run every Friday at 22:00 UTC
- cron: '0 22 * * 5'
Expand All @@ -17,7 +17,8 @@ jobs:
tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
if: github.repository == 'astropy/astroquery'
# To enable this cron job on forks, comment out the following line
if: github.repository == 'astropy/astroquery' || github.event_name != 'schedule'
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci_devtests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
# To enable this cron job on forks, comment out the following line
if: github.repository == 'astropy/astroquery' || github.event_name != 'schedule'
strategy:
fail-fast: true
matrix:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
# To enable this cron job on forks, comment out the following line
if: github.repository == 'astropy/astroquery' || github.event_name != 'schedule'
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -83,6 +85,8 @@ jobs:
egg_info:
name: egg_info with Python 3.9
runs-on: ubuntu-latest
# To enable this cron job on forks, comment out the following line
if: github.repository == 'astropy/astroquery' || github.event_name != 'schedule'
steps:
- name: Checkout code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
name: Analyze
runs-on: ubuntu-latest

if: github.repository == 'astropy/astroquery'
strategy:
fail-fast: false
matrix:
Expand Down
Loading