Skip to content

Bump safety from 3.2.10 to 3.2.11 #793

Bump safety from 3.2.10 to 3.2.11

Bump safety from 3.2.10 to 3.2.11 #793

Workflow file for this run

name: formatting & linting
on: [push]
jobs:
linting:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache multiple Pips
uses: actions/cache@v4
with:
path: |
~/.cache/pip
key: ${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('**/poetry.lock') }}
- run: pip install poetry
- run: poetry install
- run: poetry run make check
- run: poetry run make lint