Skip to content

Improve test coverage of build tools #2151

Improve test coverage of build tools

Improve test coverage of build tools #2151

Workflow file for this run

name: flake8
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
checkSyntax:
runs-on: ubuntu-latest
steps:
- name: Python Setup
uses: actions/setup-python@v4
with:
python-version: 3
architecture: x64
- name: Checkout Source
uses: actions/checkout@v3
- name: Install flake8
run: pip install flake8
- name: Syntax Error Check
run: |
flake8 --version
flake8 novelwriter --count --show-source --statistics
flake8 tests --count --show-source --statistics