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:
Christian Clauss 2023-02-07 19:43:27 +01:00 committed by GitHub
parent 181184007f
commit d13a40a390
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

12
.github/workflows/safety.yml vendored Normal file
View 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