-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (59 loc) · 1.36 KB
/
ci.yml
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
63
64
name: CI
on:
push:
branches:
- 'main'
- '*.*'
- '!*backport*'
tags:
- 'v*'
- '!*dev*'
- '!*pre*'
- '!*post*'
pull_request:
# Allow manual runs through the web UI
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
core:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main
with:
coverage: codecov
toxdeps: tox-pypi-filter
posargs: --color=yes
envs: |
- linux: py312
- linux: py311
- linux: py310
test:
needs: [core]
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main
with:
coverage: codecov
toxdeps: tox-pypi-filter
posargs: --color=yes
envs: |
- windows: py311
- macos: py310
- linux: py310-oldestdeps
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
docs:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main
with:
default_python: '3.10'
submodules: false
pytest: false
toxdeps: tox-pypi-filter
cache-path: |
docs/_build/
docs/generated/
.tox/sample_data/
cache-key: docs-${{ github.run_id }}
libraries: |
apt:
- graphviz
envs: |
- linux: build_docs