Skip to content

Commit fad7b57

Browse files
committed
first cut of ci
1 parent bf6ca90 commit fad7b57

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
directory: "/"
10+
schedule:
11+
interval: "daily"
12+
target-branch: "main"

.github/workflows/ci.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: ci
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
jobs:
11+
build:
12+
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

Comments
 (0)