Skip to content

Add unsubscribe instructions #7

Add unsubscribe instructions

Add unsubscribe instructions #7

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.10'
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-${{ env.pythonLocation }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-${{ env.pythonLocation }}-pip-
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pylint
- name: Run pylint
run: >
pylint
--extension-pkg-allow-list=PyQt5
$(find ./ -iname "*.py")