-
Notifications
You must be signed in to change notification settings - Fork 26
50 lines (48 loc) · 1.2 KB
/
ci_tests.yaml
File metadata and controls
50 lines (48 loc) · 1.2 KB
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
# This workflow runs tests on pull requests.
name: tests
on:
pull_request:
push:
# Run once a day
schedule:
- cron: '0 0 * * *'
jobs:
tests:
runs-on: ${{ matrix.platform.os }}
strategy:
fail-fast: true
matrix:
platform:
- os: ubuntu-latest
architecture: x64
- os: windows-latest
architecture: x64
# x86 builds are only meaningful for Windows
- os: windows-latest
architecture: x86
- os: macos-13
architecture: x64
major:
- 3
minor:
- 8
- 9
- 10
- 11
- 12
category:
# Runs the base test environment
- py
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '${{ matrix.major }}.${{ matrix.minor }}'
architecture: ${{ matrix.platform.architecture }}
- run: |
python -m pip install --upgrade pip
pip install --upgrade -r ci-requirements.txt
- name: run test
env:
TOXENV: '${{ matrix.category }}${{ matrix.major }}${{ matrix.minor }}'
run: tox -- -vv