We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf6ca90 commit fad7b57Copy full SHA for fad7b57
.github/dependabot.yml
@@ -0,0 +1,12 @@
1
+version: 2
2
+updates:
3
+ - package-ecosystem: "github-actions"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "daily"
7
+ target-branch: "main"
8
+ - package-ecosystem: "cargo"
9
10
11
12
.github/workflows/ci.yml
@@ -0,0 +1,25 @@
+---
+name: ci
+on:
+ push:
+ branches:
+ - main
+ pull_request:
+jobs:
+ build:
+ strategy:
13
+ matrix:
14
+ os:
15
+ - ubuntu-latest
16
+ python:
17
+ - "3.12"
18
+ runs-on: ${{matrix.os}}
19
+ steps:
20
+ - uses: actions/checkout@v4
21
+ - run: docker compose up --detach db
22
+ - uses: astral-sh/setup-uv@v5
23
+ with:
24
+ python-version: ${{maxtrix.python}}
25
+ - run: uv sync --all-extras --dev
0 commit comments