Skip to content

mongoengine 29

mongoengine 29 #106

Workflow file for this run

name: Linting Tests
# Only for least supported python version
on:
push:
branches:
- master
tags:
- "*"
pull_request:
branches:
- "*"
jobs:
linting:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: "linting"
python: "3.10"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install nox virtualenv
- name: Test build
run: "nox -s lint"