Skip to content

Dao and service method to get project by ID #11

Dao and service method to get project by ID

Dao and service method to get project by ID #11

Workflow file for this run

name: Code Formatting with Black
on:
pull_request:
branches:
'*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.12'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r townhall/requirements.txt
- name: Run Black
run: |
black . --exclude "townhall/myapi/migrations/"