Issue #556 use the get_weights_size_style() from base_plot.py to plot… #1327
This file contains hidden or 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
| # This workflow will check third-party Python packages for vulnerabilities using pip-audit. | |
| # pip-audit finds vulnerabilities from packages that are dependencies of | |
| # the packages in the requirements.txt file. A summary is generated at the end of the action. | |
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | |
| name: Python vulnerability check | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - develop-ref | |
| - feature_* | |
| - main_* | |
| - bugfix_* | |
| - test_* | |
| - issue_* | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| selftest: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install | |
| run: | | |
| python -m venv env/ | |
| source env/bin/activate | |
| python -m pip install . | |
| - uses: pypa/gh-action-pip-audit@v1.1.0 | |
| with: | |
| inputs: '.' | |
| virtual-environment: env/ | |
| local: true | |
| summary: true |