-
Notifications
You must be signed in to change notification settings - Fork 4
32 lines (29 loc) · 968 Bytes
/
pytest.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
name: Python test
on: [push]
jobs:
build:
runs-on: ubuntu-22.04
strategy:
max-parallel: 3
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, 3.10]
steps:
- name: Install requirements
run: sudo apt-get install -y dialog
- uses: actions/checkout@v2
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test with tox
run: tox