diff options
| author | 2021-10-19 09:31:51 +0100 | |
|---|---|---|
| committer | 2021-10-19 09:31:51 +0100 | |
| commit | 5ce60174c9d8c181b461bccf184c694d5e09ad10 (patch) | |
| tree | 61b72738611830cc67c0c7aa0eb455acaa11e633 /.github | |
| parent | Update log message for when author isn't `discord.Member` (diff) | |
| parent | Merge pull request #1890 from python-discord/Migrate-to-socket_event_type (diff) | |
Merge branch 'main' into fix-sentry-BOT-1N6
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint-test.yml | 6 |
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, |