Added a new auth_token property to AuthSession class #34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: License Scanning for Python | |
on: | |
pull_request: | |
paths: | |
- 'pyproject.toml' | |
- '.github/workflows/license-scanning-python.yml' | |
env: | |
ALLOW_LICENSES: "MIT License;Apache Software License;BSD License" | |
# IGNORE_PACKAGES: "" | |
jobs: | |
scan: | |
name: Scan for licenses | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install pip-licenses | |
run: pip3 install pip-licenses | |
- name: Scan for licenses | |
run: pip-licenses --allow-only="${{ env.ALLOW_LICENSES }}" # --ignore-packages="${{ env.IGNORE_PACKAGES }}" |