-
Notifications
You must be signed in to change notification settings - Fork 45
44 lines (41 loc) · 1.22 KB
/
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
# This workflow will install Python dependencies, run tests and lint with different versions of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '0 23 * * 1' # run once a week on Monday
# Allow to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os:
- ubuntu
config:
#- ["2.7", "py27"]
#- ["3.5", "py35"]
#- ["3.6", "py36"]
#- ["3.7", "py37"]
#- ["3.8", "py38"]
- ["3.9", "flake8,py39,coverage"]
#- ["pypy-2.7", "pypy"]
#- ["pypy-3.7", "pypy3"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.config[0] }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.config[0] }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Test with tox
run: |
tox -e ${{ matrix.config[1] }}