Unverified Commit 10a9bc0b authored by seb-b's avatar seb-b Committed by GitHub
Browse files

Merge pull request #71 from neon-jungle/gitlab_lint

Gitlab lint
parents 287c5fb6 bcd40665
stages: stages:
- test - test
- lint
- release - release
...@@ -29,6 +30,23 @@ lts_211: ...@@ -29,6 +30,23 @@ lts_211:
before_script: before_script:
- pip install .['testing'] wagtail~=2.11 django~=3.1 - pip install .['testing'] wagtail~=2.11 django~=3.1
flake8:
stage: lint
image: python:3.8
before_script:
- pip install flake8
script:
- flake8 wagtailvideos/ tests/
isort:
stage: lint
image: python:3.8
before_script:
- pip install isort -e .
script:
- isort --recursive --diff --check-only wagtailvideos/ tests/
build: build:
image: python:3.8 image: python:3.8
stage: release stage: release
......
...@@ -10,7 +10,7 @@ from setuptools import find_packages, setup # noqa: E4 ...@@ -10,7 +10,7 @@ from setuptools import find_packages, setup # noqa: E4
setup( setup(
name='wagtailvideos', name='wagtailvideos',
version='2.10.2', version='2.10.3',
description="A wagtail module for uploading and displaying videos in various codecs.", description="A wagtail module for uploading and displaying videos in various codecs.",
long_description=readme, long_description=readme,
author='Neon Jungle', author='Neon Jungle',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment