-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (35 loc) · 1.1 KB
/
backend_check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: check backend
on: [push, pull_request]
jobs:
build_backend_and_check_codestyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.10
- name: setup poetry and install dependencies
run: |
python -m pip install --upgrade pip poetry
python -m poetry lock --no-update
python -m poetry install --with lint --quiet --no-interaction
working-directory: backend/df_designer
- name: build wheel
run: |
python -m poetry build
working-directory: backend/df_designer
- name: run black codestyle
run: |
black --line-length=120 --check .
working-directory: backend
- name: run flake8 codestyle
run: |
ls
bash ./bin/run_codestyle.sh DIFF_BRANCH=${BASE_BRANCH}
env:
BASE_BRANCH: ${{github.base_ref}}
- name: run isort codestyle
run: |
isort --line-length=120 --diff .
working-directory: backend