FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
astroquery/.github/workflows/ci_devtests.yml at main · astropy/astroquery · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
astropy
/
astroquery
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
447
Star
790
Code
Issues
362
Pull requests
53
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
astroquery
/
.github
/
workflows
/
ci_devtests.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
62 lines (56 loc) · 1.6 KB
Breadcrumbs
astroquery
/
.github
/
workflows
/
ci_devtests.yml
Copy path
File metadata and controls
62 lines (56 loc) · 1.6 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
This test job is separated out into its own workflow to be able to obtain a separate badge for it
name
:
CI-devtest
on
:
push
:
branches
:
-
main
tags
:
-
'
*
'
pull_request
:
branches
:
-
main
schedule
:
#
run every Monday at 5am UTC
-
cron
:
'
0 5 * * 1
'
workflow_dispatch
:
concurrency
:
group
:
${{ github.workflow }}-${{ github.ref }}
cancel-in-progress
:
true
permissions
:
contents
:
read
jobs
:
tests
:
name
:
${{ matrix.name }}
runs-on
:
${{ matrix.os }}
strategy
:
fail-fast
:
true
matrix
:
include
:
-
name
:
dev dependencies with all dependencies with coverage
os
:
ubuntu-latest
python
:
'
3.13
'
toxenv
:
py313-test-alldeps-devdeps-cov
toxargs
:
-v
-
name
:
Python 3.14
os
:
ubuntu-latest
python
:
'
3.14
'
toxenv
:
py314-test
toxargs
:
-v
steps
:
-
name
:
Checkout code
uses
:
actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1
#
v7.0.1
with
:
fetch-depth
:
0
-
name
:
Set up Python
uses
:
actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97
#
v7.0.0
with
:
python-version
:
${{ matrix.python }}
-
name
:
Install Python dependencies
run
:
python -m pip install --upgrade tox
-
name
:
Run tests
run
:
tox ${{ matrix.toxargs }} -e ${{ matrix.toxenv }} -- ${{ matrix.toxposargs }}
-
name
:
Upload coverage to codecov
if
:
contains(matrix.toxenv,'-cov')
uses
:
codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f
#
v7.0.0
with
:
file
:
./coverage.xml
Back
|
FazBrowse Home
|
New Git URL