[Fixes #20] add user create function #9
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: flake8 | ||
on: | ||
push: | ||
branches: ["main"] | ||
pull_request: | ||
branches: ["main"] | ||
permissions: | ||
contents: read | ||
# vs code autopep8Args: | ||
# "python.formatting.autopep8Args": [ | ||
# "--max-line-length=127", | ||
# "--indent-size=4", | ||
# "--ignore=E121" | ||
#] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.11" | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
<<<<<<< HEAD | ||
<<<<<<< HEAD:.github/workflows/python-check.yaml | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
- name: run black check | ||
run: | | ||
black --check . | ||
- name: Test with mypy | ||
run: "mypy geonodectl --check-untyped-defs" | ||
======= | ||
pip install `grep flake8 requirements.txt` | ||
>>>>>>> e0762e8 ([Fixes #39] add .github/ISSUE_TEMPLATE/ and .github/pull_request_template.md):.github/workflows/python-flake8.yaml | ||
======= | ||
<<<<<<< HEAD:.github/workflows/python-flake8.yaml | ||
pip install `grep flake8 requirements.txt` | ||
======= | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
- name: run black check | ||
run: | | ||
black --check . | ||
>>>>>>> 8d0dc8f ([Fixes #32] make page size a default value inside the project):.github/workflows/python-check.yaml | ||
>>>>>>> e15f302 ([Fixes #32] make page size a default value inside the project) | ||
- name: Lint with flake8 | ||
run: | | ||
# stop the build if there are Python syntax errors or undefined names | ||
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | ||
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | ||
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics |