Skip to content

Merge branch 'development' of https://github.com/Mahmoud-Emad/Switch-… #69

Merge branch 'development' of https://github.com/Mahmoud-Emad/Switch-…

Merge branch 'development' of https://github.com/Mahmoud-Emad/Switch-… #69

Workflow file for this run

name: Backend lint
on:
push:
branches:
[development, development_*]
pull_request:
branches:
[development, development_*]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [ 3.8 ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
cd backend && poetry install
poetry run black .
poetry run flake8 .