Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
version: 2
updates:
- package-ecosystem: pip
directory: /
schedule:
interval: weekly
labels: [dependencies]
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
labels: [dependencies, ci]
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI
on:
push:
branches: [main, dev, 'feat/**', 'fix/**']
pull_request:
branches: [main, dev]
jobs:
lint-and-test:
name: Ruff + Pytest
runs-on: ubuntu-latest
container:
image: python:3.13-slim
steps:
- run: apt-get update && apt-get install -y --no-install-recommends git
- uses: actions/checkout@v6
- run: pip install --no-cache-dir -r requirements.txt -r requirements-dev.txt
- run: ruff check --select ALL app/
- run: pytest --tb=short -q
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

pytest==8.3.4
pytest-asyncio==0.24.0
ruff
Loading