Skip to content

Commit f3037a4

Browse files
committed
fix: use rust crates to discover config
1 parent 5d82699 commit f3037a4

10 files changed

Lines changed: 1092 additions & 30 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ jobs:
2020
- name: fmt
2121
run: deno fmt --check
2222

23+
- name: build
24+
run: deno task build
25+
2326
- name: lint
2427
run: deno lint
2528

@@ -36,5 +39,7 @@ jobs:
3639
with:
3740
submodules: true
3841
- uses: denoland/setup-deno@v2
42+
- name: Build
43+
run: deno task build
3944
- name: Publish to JSR on tag
4045
run: deno run -A jsr:@david/publish-on-tag@0.2.0

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
# MacOS generated files
88
.DS_Store
99
.DS_Store?
10+
/target
11+
12+
/lib

.rustfmt.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
max_width = 80
2+
tab_spaces = 2
3+
edition = "2021"

0 commit comments

Comments
 (0)