-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (31 loc) · 918 Bytes
/
test.yaml
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
name: CI
on:
push:
pull_request:
jobs:
tox:
runs-on: ubuntu-latest
container: registry.fedoraproject.org/fedora:latest
permissions: {}
timeout-minutes: 10
steps:
- name: Clone repository
uses: actions/checkout@v3
- name: Install test dependencies
run: dnf install -y tox python3-pytest-cov python3-pytest-timeout
- name: Run test with site packages
run: tox
- name: Run test for Python 3.12 venv
run: tox -e py312
- name: Run test for Python 3.11 venv
run: tox -e py311
- name: Run test for Python 3.10 venv
run: tox -e py310
- name: Run test for Python 3.9 venv
run: tox -e py39
- name: Run test for Python 3.8 venv
run: tox -e py38
- name: Run test for Python 3.7 venv
run: tox -e py37
- name: Run test for Python 3.6 venv
run: tox -e py36