Skip to content

feat: add --show-diff to deploy command #70

feat: add --show-diff to deploy command

feat: add --show-diff to deploy command #70

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Unit Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.5.1
- name: Install dependencies
run: |
poetry install -v
- name: Run unit tests
env:
AWS_REGION: us-east-1
run: |
poetry run pytest tests/
- name: Upload code coverage
uses: actions/upload-artifact@v3
with:
name: code-coverage
path: coverage/coverage.xml