mirror of
https://github.com/actions/setup-python.git
synced 2025-04-24 07:22:14 +00:00
This GitHub Action should demonstrate that the version of `setuptools` in `setup-python` needs to be upgraded...
12 lines
268 B
YAML
12 lines
268 B
YAML
name: safety
|
|
on: [pull_request, push]
|
|
jobs:
|
|
safety:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# - uses: actions/checkout@v3
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: 3.x
|
|
- run: pip install safety
|
|
- run: safety check
|