aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorGravatar Shivansh-007 <[email protected]>2021-10-17 14:46:36 +0530
committerGravatar Shivansh-007 <[email protected]>2021-10-17 14:50:17 +0530
commit3b25fc83d6dde4e4801a41b64a47a75730aea9e9 (patch)
tree74b1ac54d1d3ea46d54a73db163a47f0a982019e /.github
parentAdd incidents check in delete and reaction handlers also (diff)
parentMerge pull request #1871 from python-discord/modlog-ingore-channels-mods-can'... (diff)
Merge remote-tracking branch 'upstream/main' into feature/enhance-incidents
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint-test.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml
index 2f42f1895..f2c9dfb6c 100644
--- a/.github/workflows/lint-test.yml
+++ b/.github/workflows/lint-test.yml
@@ -81,12 +81,14 @@ jobs:
pip install poetry
poetry install
- # Check all the dependencies are compatible with the MIT license.
+ # Check all of our non-dev dependencies are compatible with the MIT license.
# If you added a new dependencies that is being rejected,
# please make sure it is compatible with the license for this project,
# and add it to the ALLOWED_LICENSE variable
- name: Check Dependencies License
- run: pip-licenses --allow-only="$ALLOWED_LICENSE"
+ run: |
+ pip-licenses --allow-only="$ALLOWED_LICENSE" \
+ --package $(poetry export -f requirements.txt --without-hashes | sed "s/==.*//g" | tr "\n" " ")
# This step caches our pre-commit environment. To make sure we
# do create a new environment when our pre-commit setup changes,