Skip to content

(Update) - banned release groups and compile some existing PR's #125

(Update) - banned release groups and compile some existing PR's

(Update) - banned release groups and compile some existing PR's #125

Workflow file for this run

name: Lint
on:
push:
branches:
- develop
- master
pull_request:
branches:
- master
- develop
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run linter
run: flake8 .