Skip to content

⬆️ Bump certifi from 2024.8.30 to 2024.12.14 #2923

⬆️ Bump certifi from 2024.8.30 to 2024.12.14

⬆️ Bump certifi from 2024.8.30 to 2024.12.14 #2923

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.3.0
with:
python-version: ${{ matrix.python-version }}
- uses: Gr1N/setup-poetry@v9
- run: poetry --version
- name: Set up cache
uses: actions/cache@v4.2.0
with:
path: .venv
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install
- name: Run style checks
run: |
make check-codestyle
- name: Run tests
run: |
make test
- name: Run safety checks
run: |
make check-safety