Skip to content

Bringing back live mongodb tests as optional #113

Bringing back live mongodb tests as optional

Bringing back live mongodb tests as optional #113

Workflow file for this run

name: Lint
on:
pull_request:
push:
jobs:
build:
runs-on: ${{ matrix.os }}
environment:
name: test
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
os: [ubuntu-latest]
steps:
- name: Check out Git repository
uses: actions/[email protected]
- name: set up python '3.10'
uses: actions/[email protected]
with:
python-version: "3.10"
# Install your linters here
- name: Install linters
run: |
python -m pip install -e ".[test]"
- name: Run linters
uses: wearerequired/[email protected]
with:
flake8: true
mypy: true
continue_on_error: false
# Enable your linters here