forked from dahlia/pghstore
-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (38 loc) · 995 Bytes
/
config.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
name: pghstore CI
on: push
jobs:
build:
strategy:
matrix:
include:
- toxenv: py27
python_version: "2.7"
- toxenv: py35
python_version: "3.5"
- toxenv: py36
python_version: "3.6"
- toxenv: py37
python_version: "3.7"
- toxenv: py38
python_version: "3.8"
- toxenv: pypy
python_version: "pypy2.7"
- toxenv: pypy3
python_version: "pypy3.8"
- toxenv: lint
python_version: "3.7"
name: ${{ matrix.toxenv }} tests
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Install tox
run: pip install tox
- name: Run tests
env:
TOXENV: ${{ matrix.toxenv }}
run: tox