Merge pull request #2180 from City-of-Helsinki/fix-favicon-paths #2158
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: (KS) Python coding style | |
on: | |
push: | |
branches: [develop, main] | |
pull_request: | |
paths: | |
- 'backend/kesaseteli/**' | |
- '.github/workflows/ks-py-coding-style.yml' | |
- '.github/workflows/ks-pytest.yml' | |
- 'backend/shared/**' | |
env: | |
DEBUG: 1 | |
jobs: | |
py-coding-style: | |
name: Python coding style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Set up Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Cache pip packages | |
uses: actions/cache@v3 | |
env: | |
cache-name: cache-pip-modules | |
with: | |
path: ~/.pip-cache | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/requirements.txt') }}-${{ hashFiles('**/requirements-dev.txt') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install dependencies | |
run: cd backend/kesaseteli && pip install -r requirements.txt -r requirements-dev.txt | |
- name: (KS) Formatting | |
run: cd backend/kesaseteli && black --check . | |
- name: (KS) Linting | |
run: cd backend/kesaseteli && flake8 | |
- name: (KS) Import sorting | |
run: cd backend/kesaseteli && isort -c . | |
- name: (Shared) Formatting | |
run: cd backend/shared && black --check . | |
- name: (Shared) Linting | |
run: cd backend/shared && flake8 | |
- name: (Shared) Import sorting | |
run: cd backend/shared && isort -c . |