forked from terraform-aws-modules/terraform-aws-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (31 loc) · 765 Bytes
/
test.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
name: Tests
env:
PYTEST_VERSION: 7.1.3
on:
push:
branches: [master]
tags: ["*"]
pull_request:
branches: [master]
jobs:
tests:
name: Test with Python ${{ matrix.python_version }}
runs-on: ubuntu-latest
strategy:
matrix:
python_version: ["3.7", "3.8", "3.9", "3.10"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python_version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python_version }}
- name: Install poetry and tox
shell: bash
run: |
pip install pytest==${PYTEST_VERSION}
- name: Run tox
shell: bash
run: |
python -m pytest -vvv tests/