25 lines
388 B
YAML
25 lines
388 B
YAML
name: Safety Check
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
branches:
|
|
- main
|
|
schedule:
|
|
- cron: "@daily"
|
|
|
|
jobs:
|
|
safety-check:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Create results folder
|
|
run: mkdir -p results
|
|
|
|
- name: Run Safety check
|
|
uses: pyupio/safety-action@v1
|
|
with:
|
|
api-key: ${{ secrets.SAFETY }}
|