Skip to content

Commit 098bbfd

Browse files
committed
Initial Commit
0 parents  commit 098bbfd

File tree

32 files changed

+6225
-0
lines changed

32 files changed

+6225
-0
lines changed

.envrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export DIRENV_WARN_TIMEOUT=20s
2+
3+
eval "$(devenv direnvrc)"
4+
5+
use devenv

.github/workflows/test.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Run Tests"
2+
3+
on:
4+
pull_request:
5+
push:
6+
7+
jobs:
8+
tests:
9+
strategy:
10+
matrix:
11+
os: [ ubuntu-latest ]
12+
runs-on: ${{ matrix.os }}
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: cachix/install-nix-action@v26
17+
- uses: cachix/cachix-action@v14
18+
with:
19+
name: devenv
20+
21+
- name: Install devenv.sh
22+
run: nix profile install nixpkgs#devenv
23+
24+
- name: Run tests
25+
run: devenv test

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
debug/
4+
target/
5+
6+
# Devenv
7+
.devenv*
8+
devenv.local.nix
9+
10+
# direnv
11+
.direnv
12+
13+
# pre-commit
14+
.pre-commit-config.yaml

0 commit comments

Comments
 (0)