Skip to content

PYTHON-4389 Add GitHub Actions test for python (#825) #1

PYTHON-4389 Add GitHub Actions test for python (#825)

PYTHON-4389 Add GitHub Actions test for python (#825) #1

Workflow file for this run

name: Python Tests
on:
push:
pull_request:
paths:
- bindings/python/*
concurrency:
group: python-test-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
working-directory: ./bindings/python
shell: bash -eux {0}
jobs:
static:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: "Run pre-commit"
working-directory: .
run: |
pip install -U -q pre-commit
pre-commit run --all-files --hook-stage manual
- run: |
pip install check-manifest
check-manifest -v
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.12"]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
allow-prereleases: true
python-version: ${{ matrix.python-version }}
- name: Build and test dist files
run: |
export LIBMONGOCRYPT_VERSION=$(cat ./libmongocrypt-version.txt)
git fetch origin $LIBMONGOCRYPT_VERSION
bash ./release.sh