Skip to content

build(deps): update niquests requirement from ~=3.8.0 to ~=3.9.0 #14

build(deps): update niquests requirement from ~=3.8.0 to ~=3.9.0

build(deps): update niquests requirement from ~=3.8.0 to ~=3.9.0 #14

Workflow file for this run

name: CI
on: [push, fork, pull_request, workflow_dispatch]
jobs:
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crate-ci/typos@master
check:
strategy:
matrix:
os: [ubuntu, windows, macos]
fail-fast: false
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
pip install uv
uv pip install -r pyproject.toml --system
- name: Check code quality
run: |
ruff format --check --diff
ruff check --diff