Skip to content

build(deps): update idna requirement from >=3.18 to >=3.19 #1324

build(deps): update idna requirement from >=3.18 to >=3.19

build(deps): update idna requirement from >=3.18 to >=3.19 #1324

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install clang-format and cmake
run: sudo apt-get install -y clang-format cmake
- name: Install
run: make deps
- name: Test
run: make clean && make test