-
-
Notifications
You must be signed in to change notification settings - Fork 41
46 lines (40 loc) · 1.15 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
name: CI
on:
schedule:
# run every day at 4am UTC
- cron: '0 4 * * *'
push:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@924441154cf3053034c6513d5e06c69d262fb9a6 # v1.13.0
with:
envs: |
- macos: py310-test-oldestdeps
- macos: py311-test
- macos: py312-test
- linux: py310-test-oldestdeps
- linux: py311-test
- linux: py312-test
- linux: py312-test-devdeps
- windows: py310-test-oldestdeps
- windows: py311-test
- windows: py312-test
coverage: 'codecov'
publish:
needs: tests
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish.yml@924441154cf3053034c6513d5e06c69d262fb9a6 # v1.13.0
with:
test_extras: test
test_command: pytest -p no:warnings --pyargs pyregion
targets: |
- cp*-manylinux_x86_64
- cp*-macosx_x86_64
- cp*-macosx_arm64
- cp*-win_amd64
secrets:
pypi_token: ${{ secrets.pypi_token }}