Skip to content

App: fix CC BY-NC-SA 4.0 section 2a1A #177

App: fix CC BY-NC-SA 4.0 section 2a1A

App: fix CC BY-NC-SA 4.0 section 2a1A #177

Workflow file for this run

name: Static Analysis
on:
pull_request:
push:
branches: [main]
jobs:
job:
runs-on: ubuntu-latest
steps:
# https://github.com/actions/setup-python
- name: Install Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install Python dependencies
run: |
pip install --upgrade pip
pip install black
pip install flake8
pip install isort
pip install pre-commit
# https://github.com/actions/checkout
- name: Checkout cc-legal-tools-app
uses: actions/checkout@v3
with:
path: cc-legal-tools-app
- name: pre-commit
run: pre-commit run --show-diff-on-failure --color=always --all-files
working-directory: ./cc-legal-tools-app