46 lines
1.1 KiB
YAML
46 lines
1.1 KiB
YAML
name: Python Tests
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
|
|
pre-commit:
|
|
name: pre-commit
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-python@v2
|
|
- uses: pre-commit/action@v2.0.0
|
|
with:
|
|
extra_args: --all-files --hook-stage=manual
|
|
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
python-version: ["3.6", "3.10"]
|
|
fail-fast: false
|
|
name: CPython ${{ matrix.python-version }}-${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
cache: 'pip'
|
|
cache-dependency-path: 'setup.py'
|
|
- name: Start MongoDB with Custom Options
|
|
run: |
|
|
mkdir data
|
|
mongod --fork --dbpath=$(pwd)/data --logpath=$PWD/mongo.log --setParameter enableTestCommands=1
|
|
- name: Install Python dependencies
|
|
run: |
|
|
python -m pip install -U pip tox tox-gh-actions
|
|
- name: Run tests
|
|
run: |
|
|
tox
|