Skip to content

FIX: card dictionary #284

FIX: card dictionary

FIX: card dictionary #284

Workflow file for this run

name: Lint
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: Whist-Team/actions/setup-poetry@v2
with:
python-version: 3.9
- name: Lint sources with flake8
run: poetry run flake8 whist_core --count --show-source --statistics
- name: Lint sources with pylint
run: poetry run pylint whist_core
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run bandit
uses: tj-actions/bandit@v5
with:
targets: |
whist_core
options: "-r"