Added safety scan with Safety
All checks were successful
Test / build (push) Successful in 52s

This commit is contained in:
2025-07-25 12:28:13 +03:00
committed by Gitea
parent de2b04ca12
commit fe7d11092c

32
.gitea/workflows/test.yml Normal file
View File

@@ -0,0 +1,32 @@
name: Test
on:
push:
branches:
- main
- staging
- dev
tags-ignore:
- v*
pull_request:
branches:
- main
- staging
- dev
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Run safety check
uses: pyupio/safety-action@v1
with:
api-key: ${{ secrets.SAFETY_API_KEY }}