Skip to content

Merge branch 'master' of https://github.com/idoshr/flask-mongoengine #43

Merge branch 'master' of https://github.com/idoshr/flask-mongoengine

Merge branch 'master' of https://github.com/idoshr/flask-mongoengine #43

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@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
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"