Skip to content

build(deps): bump certifi from 2023.11.17 to 2024.7.4 #152

build(deps): bump certifi from 2023.11.17 to 2024.7.4

build(deps): bump certifi from 2023.11.17 to 2024.7.4 #152

Workflow file for this run

name: Check codebase
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ["3.8", "3.10", "3.11"]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: poetry install --no-interaction
- name: Run linter
run: make lint
- name: Run tests
run: make test