Skip to content

Feature/149 contactgegevens postman collection #148

Feature/149 contactgegevens postman collection

Feature/149 contactgegevens postman collection #148

Workflow file for this run

name: code style
# Run this workflow every time a new commit pushed to your repository
on:
push:
branches:
- main
paths:
- '**.py'
pull_request:
paths:
- '**.py'
workflow_dispatch:
jobs:
isort:
name: Code imports
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r requirements/ci.txt
- name: Run isort
run: isort --check-only --diff .
black:
name: Code format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r requirements/ci.txt
- name: Run black
run: black --check --diff src docs
flake8:
name: Code style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install dependencies
run: pip install -r requirements/ci.txt
- name: Run flake8
run: flake8 src