-
Notifications
You must be signed in to change notification settings - Fork 12
88 lines (77 loc) · 2.81 KB
/
ci_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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# 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: CI Tests
on:
push:
branches:
- main # GitHub now defaults to 'main' as the name of the primary branch. Change this as needed.
# tags: # run CI if specific tags are pushed
pull_request:
# branches: # only build on PRs against 'main' if you need to further limit when CI is run.
# - main
jobs:
# Github Actions supports ubuntu, windows, and macos virtual environments:
# https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
ci_tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- name: Code style checks
os: ubuntu-latest
python: 3.x
toxenv: codestyle
- name: Python 3.9 with minimal dependencies
os: ubuntu-latest
python: 3.9
toxenv: py39-test
# - name: Python 3.9 with all optional dependencies and coverage checking
# os: ubuntu-latest
# python: 3.9
# toxenv: py39-test-alldeps-cov
# - name: macOS - Python 3.9 with all optional dependencies
# - os: macos-latest
# - python: 3.9
# - toxenv: py39-test-alldeps
# - name: Windows - Python 3.9 with all optional dependencies
# - os: windows-latest
# - python: 3.9
# - toxenv: py39-test-alldeps
# - name: Python 3.9 with oldest supported version of all dependencies
# os: ubuntu-16.04
# python: 3.9
# toxenv: py39-test-oldestdeps
# - name: Python 3.9 with latest dev versions of key dependencies
# os: ubuntu-latest
# python: 3.9
# toxenv: py38-test-devdeps
# - name: Test building of Sphinx docs
# os: ubuntu-latest
# python: 3.x
# toxenv: build_docs
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up python ${{ matrix.python }} on ${{ matrix.os }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox codecov
- name: Validate json files
uses: RaaLabs/[email protected]
- name: Test with tox
run: |
tox -e ${{ matrix.toxenv }}
# This is an example of how to upload coverage to codecov
# - name: Upload coverage to codecov
# if: "contains(matrix.toxenv, '-cov')"
# uses: codecov/codecov-action@v2
# with:
# file: ./coverage.xml