Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

PyUp Safety

PyUp Safety #1084

Workflow file for this run

name: 'PyUp Safety'
on:
push:
pull_request:
schedule:
- cron: '* * 3 * *'
jobs:
security:
# runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11.8
uses: actions/setup-python@v5
with:
python-version: 3.11.8
- name: Run safety from PyUp
run: |
pip3 install -e .
pip3 freeze > requirements.txt
pip3 install safety
safety check -r requirements.txt