Skip to content

Bump pytest from 7.3.1 to 7.4.1 #331

Bump pytest from 7.3.1 to 7.4.1

Bump pytest from 7.3.1 to 7.4.1 #331

Workflow file for this run

---
on: push
jobs:
code-inspection:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Set up cache for Python dependencies
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[code-inspection]
- name: Run pylint
run: pylint job_controller test
- name: Run MyPy
run: mypy --strict job_controller