Skip to content

Commit 0293d7c

Browse files
Remove Unused Steps In CI
Signed-off-by: Hassan Abouelela <hassan@hassanamr.com>
1 parent 6436908 commit 0293d7c

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

.github/workflows/docs.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ jobs:
2727
python_version: "3.10"
2828
install_args: "--extras async-rediscache"
2929

30-
# Undeclared dependency for `releases`... whoops
31-
# https://github.com/bitprophet/releases/pull/82
32-
- run: pip install six
33-
3430
- name: Generate HTML Site
3531
run: sphinx-build -nW -j auto -b html docs docs/build
3632

@@ -56,10 +52,6 @@ jobs:
5652
python_version: "3.10"
5753
install_args: "--extras async-rediscache"
5854

59-
# Undeclared dependency for `releases`... whoops
60-
# https://github.com/bitprophet/releases/pull/82
61-
- run: pip install six
62-
6355
- name: Build All Doc Versions
6456
run: sphinx-multiversion docs docs/build -n -j auto
6557
env:

.github/workflows/lint-test.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ jobs:
2424
install_args: "--extras async-rediscache"
2525

2626
# We will not run `flake8` here, as we will use a separate flake8
27-
# action. As pre-commit does not support user installs, we set
28-
# PIP_USER=0 to not do a user install.
27+
# action.
2928
- name: Run pre-commit hooks
30-
run: export PIP_USER=0; SKIP=flake8 pre-commit run --all-files
29+
run: SKIP=flake8 pre-commit run --all-files
3130

3231
# Run flake8 and have it format the linting errors in the format of
3332
# the GitHub Workflow command to register error annotations. This

0 commit comments

Comments
 (0)