aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorGravatar Hassan Abouelela <[email protected]>2022-09-18 00:24:11 +0400
committerGravatar Hassan Abouelela <[email protected]>2022-09-18 00:24:11 +0400
commit0293d7cd2da8bc5e307b3e7e2e63ee31583ce35a (patch)
treeb75a3b879b6c640325affece77ea850299709f6c /.github
parentUse Poetry Base In Docker Image (diff)
Remove Unused Steps In CI
Signed-off-by: Hassan Abouelela <[email protected]>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/docs.yaml8
-rw-r--r--.github/workflows/lint-test.yaml5
2 files changed, 2 insertions, 11 deletions
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml
index 001a498d..42c9e742 100644
--- a/.github/workflows/docs.yaml
+++ b/.github/workflows/docs.yaml
@@ -27,10 +27,6 @@ jobs:
python_version: "3.10"
install_args: "--extras async-rediscache"
- # Undeclared dependency for `releases`... whoops
- # https://github.com/bitprophet/releases/pull/82
- - run: pip install six
-
- name: Generate HTML Site
run: sphinx-build -nW -j auto -b html docs docs/build
@@ -56,10 +52,6 @@ jobs:
python_version: "3.10"
install_args: "--extras async-rediscache"
- # Undeclared dependency for `releases`... whoops
- # https://github.com/bitprophet/releases/pull/82
- - run: pip install six
-
- name: Build All Doc Versions
run: sphinx-multiversion docs docs/build -n -j auto
env:
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml
index 3a9c80a2..e9821677 100644
--- a/.github/workflows/lint-test.yaml
+++ b/.github/workflows/lint-test.yaml
@@ -24,10 +24,9 @@ jobs:
install_args: "--extras async-rediscache"
# We will not run `flake8` here, as we will use a separate flake8
- # action. As pre-commit does not support user installs, we set
- # PIP_USER=0 to not do a user install.
+ # action.
- name: Run pre-commit hooks
- run: export PIP_USER=0; SKIP=flake8 pre-commit run --all-files
+ run: SKIP=flake8 pre-commit run --all-files
# Run flake8 and have it format the linting errors in the format of
# the GitHub Workflow command to register error annotations. This