Skip to content

build(deps): bump docker/login-action from 4.4.0 to 4.5.1 #105

build(deps): bump docker/login-action from 4.4.0 to 4.5.1

build(deps): bump docker/login-action from 4.4.0 to 4.5.1 #105

Workflow file for this run

name: Quality
on:
push:
pull_request:
jobs:
check_lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -r requirements-dev.txt
- name: Run pylint
run: pylint app/ tests/
check_test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
- uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1 # v6.3.0
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -r requirements-dev.txt
- name: Run pytest with coverage
run: pytest --cov=app --cov-report=term-missing --cov-fail-under=100