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 3a1500b commit def8d9aCopy full SHA for def8d9a
.github/dependabot.yml
@@ -0,0 +1,16 @@
1
+version: 2
2
+
3
+updates:
4
+ - package-ecosystem: "github-actions"
5
+ directory: "/"
6
+ schedule:
7
+ interval: "weekly"
8
9
+ - package-ecosystem: pip
10
11
12
+ interval: daily
13
+ groups:
14
+ python-packages:
15
+ patterns:
16
+ - "*"
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
+name: CI pipeline
+on: [push]
+jobs:
+ build:
+ name: continuous-integration
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - name: Install uv and set the python version
+ uses: astral-sh/setup-uv@v6
+ with:
+ activate-environment: true
17
+ python-version: 3.13
18
19
+ - name: Install deps
20
+ run: uv sync --extra dev
21
22
+ - name: Check code
23
+ run: ruff check
0 commit comments