Skip to content

Commit def8d9a

Browse files
committed
Add GitHub actions
1 parent 3a1500b commit def8d9a

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed

.github/dependabot.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
directory: "/"
11+
schedule:
12+
interval: daily
13+
groups:
14+
python-packages:
15+
patterns:
16+
- "*"

.github/workflows/ci.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI pipeline
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
name: continuous-integration
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: Install uv and set the python version
14+
uses: astral-sh/setup-uv@v6
15+
with:
16+
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

Comments
 (0)