Skip to content

Commit

Permalink
indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
MIWdlB committed May 13, 2024
1 parent 5f36ab6 commit c019604
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
run: |
pip install poetry
poetry install
lint:
needs: build
steps:
lint:
needs: build
steps:
- name: pydocstyle
run: poetry run pydocstyle --convention=google
-name: isort
Expand All @@ -40,9 +40,9 @@ jobs:
- name: flake8
run: poetry run flake8 . --ignore E501,F401,W503 --count
continue-on-error: True
test:
needs: build
steps:
test:
needs: build
steps:
- name: Testing
run: |
poetry run pytest
12 changes: 6 additions & 6 deletions .github/workflows/push_to_master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
run: |
pip install poetry
poetry install
lint:
needs: build
steps:
lint:
needs: build
steps:
- name: pydocstyle
run: poetry run pydocstyle --convention=google
-name: isort
Expand All @@ -32,9 +32,9 @@ jobs:
- name: flake8
run: poetry run flake8 . --ignore E501,F401,W503 --count
continue-on-error: True
test:
needs: build
steps:
test:
needs: build
steps:
- name: Testing
run: |
poetry run pytest
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
run: |
pip install poetry
poetry install
lint:
needs: build
steps:
lint:
needs: build
steps:
- name: pydocstyle
run: poetry run pydocstyle --convention=google
-name: isort
Expand All @@ -35,9 +35,9 @@ jobs:
- name: flake8
run: poetry run flake8 . --ignore E501,F401,W503 --count
continue-on-error: True
test:
needs: build
steps:
test:
needs: build
steps:
- name: Testing
run: |
poetry run pytest

0 comments on commit c019604

Please sign in to comment.