2020-02-24 01:11:07 +00:00
|
|
|
name: CI
|
2020-02-24 01:08:42 +00:00
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
2020-02-24 01:11:07 +00:00
|
|
|
Test:
|
2020-02-24 01:08:42 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2020-02-24 01:19:56 +00:00
|
|
|
- name: Set up Python 3.6
|
2020-02-24 01:08:42 +00:00
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
2020-02-24 01:19:56 +00:00
|
|
|
python-version: 3.6
|
|
|
|
- name: Set up Python 3.7
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: 3.7
|
|
|
|
- name: Set up Python 3.8
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: 3.8
|
2020-02-24 01:08:42 +00:00
|
|
|
- name: Run tox automation
|
|
|
|
run: |
|
|
|
|
pip install tox
|
|
|
|
tox
|