forked from facebook/facebook-python-business-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (32 loc) · 834 Bytes
/
ci.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
name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: 2.7
tox-env: py27
- python-version: 3.5
tox-env: py35
- python-version: 3.6
tox-env: py36
- python-version: 3.7
tox-env: py37
- python-version: 3.8
tox-env: py38
- python-version: 3.9
tox-env: py39
- python-version: 3.10
tox-env: py310
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Test with tox
run: |
pip install tox
tox -e ${{ matrix.tox-env }}