Skip to content

Commit

Permalink
add testing on all major mongo versions and python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
07pepa committed Oct 1, 2024
1 parent 8cb5aa8 commit 8402357
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/github-actions-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,27 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: 3.11
- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
run-tests:
strategy:
fail-fast: false
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
mongodb-version: [ 4.4, 5.0 ]
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11", "3.12.3" ]
mongodb-version: [ 4.4, 5.0, 6.0, 7.0, 8.0 ]
pydantic-version: [ "1.10.15", "2.7" ]
exclude:
- python-version: "3.7"
pydantic-version: "2.7"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: pyproject.toml
- name: Start MongoDB
uses: supercharge/mongodb-github-action@1.8.0
uses: supercharge/mongodb-github-action@1.11.0
with:
mongodb-version: ${{ matrix.mongodb-version }}
mongodb-replica-set: test-rs
Expand Down

0 comments on commit 8402357

Please sign in to comment.