Skip to content

build(deps): update niquests requirement from ~=3.12.0 to ~=3.13.0 #28

build(deps): update niquests requirement from ~=3.12.0 to ~=3.13.0

build(deps): update niquests requirement from ~=3.12.0 to ~=3.13.0 #28

Workflow file for this run

name: CI
on: [push, fork, 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: astral-sh/setup-uv@v5
with:
python-version: 3.12
enable-cache: true
cache-dependency-glob: pyproject.toml
- name: Install dependencies
run: |
uv pip install -r pyproject.toml basedpyright
- name: Check code quality
run: |
ruff format --check --diff
ruff check --diff
- name: Check typing
run: |
basedpyright