more aggressive cleaning, fetching results to get actual query sample… #305
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 |