tangled
alpha
login
or
join now
bates64.com
/
loroscope
0
fork
atom
Typed structs for Loro CRDTs
rust
crdt
0
fork
atom
overview
issues
pulls
pipelines
add ci
bates64.com
1 month ago
0bf079a2
705d2464
+26
2 changed files
expand all
collapse all
unified
split
.tangled
workflows
fmt.yaml
test.yaml
+15
.tangled/workflows/fmt.yaml
···
1
1
+
when:
2
2
+
- event: [push, pull_request]
3
3
+
branch: [main]
4
4
+
engine: nixery
5
5
+
dependencies:
6
6
+
nixpkgs:
7
7
+
- rustc
8
8
+
- rustfmt
9
9
+
- clippy
10
10
+
- cargo
11
11
+
steps:
12
12
+
- name: rustfmt
13
13
+
command: cargo fmt -- --check
14
14
+
- name: clippy
15
15
+
command: cargo clippy -- -D warnings
+11
.tangled/workflows/test.yaml
···
1
1
+
when:
2
2
+
- event: [push, pull_request]
3
3
+
branch: [main]
4
4
+
engine: nixery
5
5
+
dependencies:
6
6
+
nixpkgs:
7
7
+
- rustc
8
8
+
- cargo
9
9
+
steps:
10
10
+
- name: run tests
11
11
+
command: cargo test