-
Notifications
You must be signed in to change notification settings - Fork 32
53 lines (43 loc) · 1.04 KB
/
spherical_geometry.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
name: CI
on:
push:
branches:
- master
tags:
- "*"
pull_request:
schedule:
# Run every Monday at 6am UTC
- cron: '0 6 * * 1'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
tests:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
with:
submodules: false
coverage: ''
envs: |
# Make sure that packaging will work
- name: pep517 build
linux: twine
- name: Security audit
linux: bandit
- name: PEP 8
linux: codestyle
- name: Python 3.9 (OSX)
macos: py39-test
posargs: -v
- name: Python 3.10 (Windows)
windows: py310-test
posargs: -v
- name: Python 3.11 with coverage
linux: py311-test-cov
posargs: -v
coverage: codecov
- name: Python 3.12 with dev version of dependencies
linux: py312-test-devdeps
posargs: -v