Skip to content

chore: workflow fix

chore: workflow fix #8

Workflow file for this run

name: Test and Deploy
on: [push, pull_request]
jobs:
run_infrastructure_validation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.3
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-root --with dev
- name: Code Quality
run: poetry run ruff check pe_analyzer/
- name: Unit Tests
run: |
poetry run pytest -vv --cov-report term-missing --cov-branch --cov=pe_analyzer ./tests