File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change 5
5
# Run this job on release tags, but not on pushes to the main branch
6
6
tags :
7
7
- ' *'
8
+ pull_request :
9
+ branches :
10
+ - main
8
11
schedule :
9
12
# run every Monday at 5am UTC
10
13
- cron : ' 0 5 * * 1'
@@ -16,19 +19,26 @@ jobs:
16
19
tests :
17
20
name : ${{ matrix.name }}
18
21
runs-on : ${{ matrix.os }}
19
- if : github.event_name == 'schedule' && github.repository == 'astropy/astroquery'
22
+ # if: github.event_name == 'schedule' && github.repository == 'astropy/astroquery'
20
23
strategy :
21
24
fail-fast : false
22
25
matrix :
23
26
include :
24
- - name : Python 3.9 with all dependencies with remote data
27
+ - name : py3.10 all dev deps online
25
28
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
26
36
python : ' 3.9'
27
- toxenv : py39-test-alldeps-devdeps- online
37
+ toxenv : py39-test-alldeps-online
28
38
toxargs : -v
29
39
toxposargs : -v --durations=50
30
40
31
- - name : pre-release dependencies with all dependencies
41
+ - name : py3.10 pre-release all deps
32
42
os : ubuntu-latest
33
43
python : ' 3.10'
34
44
toxenv : py310-test-alldeps-predeps
You can’t perform that action at this time.
0 commit comments