Skip to content

Bump pypa/cibuildwheel from 2.23.2 to 2.23.3 in the actions group #199

Bump pypa/cibuildwheel from 2.23.2 to 2.23.3 in the actions group

Bump pypa/cibuildwheel from 2.23.2 to 2.23.3 in the actions group #199

Workflow file for this run

name: python-bsonjs
on:
push:
branches: ["master"]
pull_request:
workflow_dispatch:
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-2019]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Test with python
run: |
python -m pip install -v -e ".[test]"
pytest