Skip to content

Commit c56d802

Browse files
committed
Adding online CI job for windows, udpdate versions
1 parent 1ff3b7f commit c56d802

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

.github/workflows/ci_crontests.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
# Run this job on release tags, but not on pushes to the main branch
66
tags:
77
- '*'
8+
pull_request:
9+
branches:
10+
- main
811
schedule:
912
# run every Monday at 5am UTC
1013
- cron: '0 5 * * 1'
@@ -16,19 +19,26 @@ jobs:
1619
tests:
1720
name: ${{ matrix.name }}
1821
runs-on: ${{ matrix.os }}
19-
if: github.event_name == 'schedule' && github.repository == 'astropy/astroquery'
22+
# if: github.event_name == 'schedule' && github.repository == 'astropy/astroquery'
2023
strategy:
2124
fail-fast: false
2225
matrix:
2326
include:
24-
- name: Python 3.9 with all dependencies with remote data
27+
- name: py3.10 all dev deps online
2528
os: ubuntu-latest
29+
python: '3.10'
30+
toxenv: py310-test-alldeps-devdeps-online
31+
toxargs: -v
32+
toxposargs: -v --durations=50
33+
34+
- name: Windows py3.9 all deps online
35+
os: windows-latest
2636
python: '3.9'
27-
toxenv: py39-test-alldeps-devdeps-online
37+
toxenv: py39-test-alldeps-online
2838
toxargs: -v
2939
toxposargs: -v --durations=50
3040

31-
- name: pre-release dependencies with all dependencies
41+
- name: py3.10 pre-release all deps
3242
os: ubuntu-latest
3343
python: '3.10'
3444
toxenv: py310-test-alldeps-predeps

0 commit comments

Comments
 (0)