aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2022-03-31 21:56:48 +0100
committerGravatar Chris Lovering <[email protected]>2022-03-31 21:56:48 +0100
commit38f0e150f188ce4b4a9048a9b8556a0276b5dad1 (patch)
tree28c3b543a38050b24bb29c3df3d95fe294cd8dc3 /.github
parentRemove BotBase.closing_tasks (diff)
Install optional deps during CI
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/docs.yaml3
-rw-r--r--.github/workflows/lint.yaml3
2 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml
index a01ea58f..ad10f75f 100644
--- a/.github/workflows/docs.yaml
+++ b/.github/workflows/docs.yaml
@@ -21,10 +21,11 @@ jobs:
- uses: actions/checkout@v2
- name: Install Python Dependencies
- uses: HassanAbouelela/actions/setup-python@setup-python_v1.0.0
+ uses: HassanAbouelela/actions/setup-python@setup-python_v1.1.0
with:
dev: true
python_version: 3.9
+ install_args: "--extras async-rediscache"
# Undeclared dependency for `releases`... whoops
# https://github.com/bitprophet/releases/pull/82
diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml
index dfad8cf8..cbe692f3 100644
--- a/.github/workflows/lint.yaml
+++ b/.github/workflows/lint.yaml
@@ -17,11 +17,12 @@ jobs:
steps:
- name: Install Python Dependencies
- uses: HassanAbouelela/actions/setup-python@setup-python_v1.0.0
+ uses: HassanAbouelela/actions/setup-python@setup-python_v1.1.0
with:
# Set dev=true to run pre-commit which is a dev dependency
dev: true
python_version: 3.9
+ 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