ci: add dependabot and pytest workflow

This commit is contained in:
bohd4nx
2026-03-05 04:10:57 +02:00
parent e3706f01bf
commit 91d33a0972
2 changed files with 38 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
name: Tests
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: "pip"
- name: Install dependencies
run: pip install -r requirements.txt pytest pytest-asyncio
- name: Run tests
run: pytest
env:
SEED: ${{ secrets.SEED }}
API_KEY: ${{ secrets.API_KEY }}