Skip to content

Bump requests from 2.32.5 to 2.33.0 #239

Bump requests from 2.32.5 to 2.33.0

Bump requests from 2.32.5 to 2.33.0 #239

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
cpp:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake ninja-build g++-14
- name: Build and Test C++
run: |
./build.sh
cd build && ctest --output-on-failure
env:
CXX: g++-14
rust:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Test Rust
run: make rust-test
python:
runs-on: ubuntu-latest
strategy:
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
run: make deps
- name: Test
run: make pytest