pin numpy below the fresh 2.0.0 relrease for now as it is breaking #317
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: ["push", "pull_request"] | |
jobs: | |
testing: | |
name: Testing | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
mongodb-version: [5.0] | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies for the client | |
run: | | |
pip3 install -r requirements.txt | |
pip install -e . | |
shell: bash | |
- name: Start MongoDB v${{ matrix.mongodb-version }} | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: ${{ matrix.mongodb-version }} | |
- name: Test | |
run: make test |