Skip to content

Made previews only load once you first hover over the rewrite rule, cutting down on loading time #394

Made previews only load once you first hover over the rewrite rule, cutting down on loading time

Made previews only load once you first hover over the rewrite rule, cutting down on loading time #394

Workflow file for this run

name: lint
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
SRC_DIR: zxlive
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.9 ]
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependecies
run:
pip install ".[test]"
- name: Flake8
continue-on-error: true
run:
pflake8 zxlive
- name: Pylint
continue-on-error: true
run:
pylint zxlive
- name: mypy
continue-on-error: true
run:
mypy zxlive