-
-
Notifications
You must be signed in to change notification settings - Fork 38
54 lines (45 loc) · 1.38 KB
/
tox-tests.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
# GitHub Actions workflow for testing and continuous integration.
#
# This file performs testing using tox and tox.ini to define and configure the test environments.
name: Python Tests
on:
push:
branches:
- main
tags:
- '*'
pull_request:
schedule:
# run every Monday at 6am UTC
- cron: '0 6 * * 1'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV }}
with:
submodules: false
coverage: ''
envs: |
- name: Codestyle
linux: codestyle
- name: Python 3.10 on Linux with oldest supported dependencies
linux: py310-test-oldestdeps
toxargs: -v
- name: Python 3.10 on Windows with minimal dependencies
windows: py310-test
toxargs: -v
- name: Python 3.10 on OSX with minimal dependencies
macos: py310-test
toxargs: -v
- name: Python 3.11 on Linux with all dependencies, remote data, and coverage
linux: py311-test-alldeps-cov
coverage: codecov
toxargs: -v
posargs: --remote-data=any
- name: (Allowed Failure) Python 3.12 on Linux with dev dependencies
linux: py312-test-devdeps
toxargs: -v