Skip to content

chore(deps): bump certifi from 2023.5.7 to 2023.7.22 #16

chore(deps): bump certifi from 2023.5.7 to 2023.7.22

chore(deps): bump certifi from 2023.5.7 to 2023.7.22 #16

Workflow file for this run

name: python
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types: [ created ]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up poetry
uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: poetry install
- name: Lint with black
run: poetry run black --check .