Skip to content

chore(deps): Bump starlette from 0.37.2 to 0.38.1 #16

chore(deps): Bump starlette from 0.37.2 to 0.38.1

chore(deps): Bump starlette from 0.37.2 to 0.38.1 #16

Workflow file for this run

name: Python application test
on:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -r src/requirements.txt
- name: Build coverage file
run: |
set -o pipefail
pytest --junitxml=pytest.xml --cov-report=term-missing:skip-covered --cov=app tests/ | tee pytest-coverage.txt
- name: Pytest coverage comment
uses: MishaKav/pytest-coverage-comment@main
continue-on-error: true
with:
pytest-coverage-path: ./pytest-coverage.txt
junitxml-path: ./pytest.xml