2021-06-01 05:16:52 +00:00
|
|
|
name: "pytest:py3 "
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '**'
|
|
|
|
pull_request:
|
|
|
|
branches: [ master ]
|
2022-05-26 08:12:47 +00:00
|
|
|
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
|
|
workflow_dispatch:
|
2021-06-01 05:16:52 +00:00
|
|
|
|
|
|
|
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
|
2022-05-26 08:21:46 +00:00
|
|
|
pip install -r requirements_dev.txt
|
2021-06-01 05:16:52 +00:00
|
|
|
- name: Test with pytest
|
|
|
|
run: |
|
2022-05-26 08:12:47 +00:00
|
|
|
PYTHONPATH=. python -m pytest -v -s --cache-clear --cov=python-terraform tests
|