Skip to content

Correct license badge in README #18

Correct license badge in README

Correct license badge in README #18

---
name: Code Quality Checks
on:
push:
branches: [main, development]
pull_request:
branches: [main, development]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: Install poetry
run: pip install poetry
- name: Install dependencies
run: poetry update
- name: Check format with blue
run: poetry run blue --check django_url_security/ tests/
- name: Run pre-commit checks
run: poetry run pre-commit run --all-files
- name: Check type hinting with mypy
run: poetry run mypy --strict --config-file=mypy.ini django_url_security/
- name: Check style with pylint
run: poetry run pylint django_url_security/ tests/