Skip to content

ci: Solve checks

ci: Solve checks #7

Workflow file for this run

name: codestyle
on: [push, pull_request]
jobs:
check_backend_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: run black codestyle
run: |
black --line-length=120 --check .
working-directory: backend
- name: run flake8 codestyle
run: |
bash ./bin/run_codestyle.sh DIFF_BRANCH=${BASE_BRANCH}
env:
BASE_BRANCH: ${{github.base_ref}}
check_frontend_codestyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Base image
uses: oven-actions/docker-run@v1
with:
image: oven/bun:1
name: frontend-base
command: bun install
working-directory: frontend
- name: run type checking
uses: oven-actions/docker-run@v1
with:
image: frontend-base
command: bun run check
working-directory: frontend