Skip to content

deps(deps): bump certifi from 2026.1.4 to 2026.6.17 #234

deps(deps): bump certifi from 2026.1.4 to 2026.6.17

deps(deps): bump certifi from 2026.1.4 to 2026.6.17 #234

Workflow file for this run

---
name: ci
"on":
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v6
- name: set up python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install ruff
- name: run ruff check
run: |
python -m ruff check .
- name: run ruff format check
run: |
python -m ruff format --check .
- name: run tests
run: |
python run_tests.py
- name: create issue on failure
if: failure()
uses: actions/github-script@v8
with:
github-token: ${{ secrets.ISSUE_TOKEN }}
script: |
github.rest.issues.create({
owner: context.repo.owner,
repo: context.repo.repo,
title: 'CI failed on ${{ matrix.python-version }}',
body: 'CI failed for Python ${{ matrix.python-version }}. ' +
'See the workflow run for details.',
labels: ['ci-failure','bug']
})