dda-python-terraform/.github/workflows/pytest.yml
Kiran Kumar Kotari 6848798f45
Update pytest.yml
test folder name correction in workflow
2022-05-26 04:24:02 -04:00

34 lines
812 B
YAML

name: "pytest:py3 "
on:
push:
branches:
- '**'
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Test with pytest
run: |
PYTHONPATH=. python -m pytest -v -s --cache-clear --cov=python-terraform test