Skip to content

PYTHON-4173 [python-bsonjs] Fix dist files (#54) #162

PYTHON-4173 [python-bsonjs] Fix dist files (#54)

PYTHON-4173 [python-bsonjs] Fix dist files (#54) #162

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.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Test with python
run: |
python -m pip install -v -e ".[test]"
pytest