Skip to content

Merge branch 'st4-develop' #258

Merge branch 'st4-develop'

Merge branch 'st4-develop' #258

Workflow file for this run

name: CI Lint
on:
push:
branches:
- 'master'
- 'st3176'
paths:
- '**/*.json'
- '**/*.py'
- '**/*.sublime-*'
pull_request:
branches:
- '**'
paths:
- '**/*.json'
- '**/*.py'
- '**/*.sublime-*'
workflow_dispatch:
jobs:
lint:
name: Python ${{ matrix.python }}
runs-on: ubuntu-20.04
strategy:
matrix:
python:
- '3.8'
arch:
- 'x64'
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
architecture: ${{ matrix.arch }}
- name: Install linters
run: pip install -r tests/requirements.txt
- name: Run black
run: python -m black --check .
- name: Run flake8
run: python -m flake8