Skip to content

Commit 0b595ea

Browse files
committed
inital commit
0 parents  commit 0b595ea

File tree

19 files changed

+2047
-0
lines changed

19 files changed

+2047
-0
lines changed

.github/workflows/check.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: check
2+
on:
3+
pull_request:
4+
branches: [main]
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
check:
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
os: [ ubuntu-latest, macos-latest, macos-14]
15+
steps:
16+
- uses: actions/checkout@main
17+
- uses: DeterminateSystems/nix-installer-action@main
18+
- uses: DeterminateSystems/magic-nix-cache-action@main
19+
20+
- name: System Info
21+
run: |
22+
uname -a
23+
nix --version
24+
25+
- name: Run flake check
26+
run: nix flake check -L --show-trace

.github/workflows/pre-check.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: pre-check
2+
on:
3+
pull_request:
4+
branches: [main]
5+
6+
jobs:
7+
check-signed-commits:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: check signed commits
11+
uses: 1Password/check-signed-commits-action@v1

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
result
2+
.direnv
3+
.envrc
4+
target
5+
.tmp
6+
.nixos-test-history

0 commit comments

Comments
 (0)