generated from yxtay/python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (32 loc) · 920 Bytes
/
pytest_pv.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
name: Pytest CLI commands
on:
push:
branches: [main, develop, release/*]
tags:
- '*.*.*'
paths-ignore:
- "docs/**"
- "**.md"
pull_request:
branches: "*"
paths-ignore:
- "docs/**"
- "**.md"
jobs:
pytest:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Update test_post_processing Dependencies
run: |
make deps-install
poetry run pytest tests