Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit 2be0054

Browse files
committed
feat(ci): add CI
1 parent e3281e8 commit 2be0054

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/dependabot.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "monthly"
8+

.github/workflows/ci.yaml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/[email protected]
11+
- uses: DeterminateSystems/nix-installer-action@v11
12+
- uses: DeterminateSystems/magic-nix-cache-action@main
13+
- name: Build package
14+
run: nix build -L
15+

0 commit comments

Comments
 (0)