Skip to content

build(deps): bump certifi from 2022.12.7 to 2023.7.22 #71

build(deps): bump certifi from 2022.12.7 to 2023.7.22

build(deps): bump certifi from 2022.12.7 to 2023.7.22 #71

Workflow file for this run

name: CI
on: ['push', 'pull_request']
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Lint
run: |
make lint
- name: Test
run: |
make test