Fix: Update interface for update user to make is_admin and is_active … #1000
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Layout | |
on: push | |
jobs: | |
code_style_python: | |
name: Python code convention check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: psf/black@stable | |
with: | |
version: 24.4.0 | |
options: "--check --verbose --diff" | |
src: "./server" | |
code_style_js: | |
name: JavaScript code convention check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- name: Check JS | |
run: | | |
cd web-app | |
yarn install | |
yarn run lint:no-legacy |