mirror of
https://github.com/actions/setup-python.git
synced 2025-04-20 03:53:30 +00:00
GitHub Action to run pyup Safety
This GitHub Action should demonstrate that the version of `setuptools` in `setup-python` needs to be upgraded...
This commit is contained in:
parent
181184007f
commit
d13a40a390
12
.github/workflows/safety.yml
vendored
Normal file
12
.github/workflows/safety.yml
vendored
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
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
|
Loading…
Reference in New Issue
Block a user