Skip to content

build(deps): bump gunicorn from 26.1.0 to 26.2.0 #1326

build(deps): bump gunicorn from 26.1.0 to 26.2.0

build(deps): bump gunicorn from 26.1.0 to 26.2.0 #1326

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