Skip to content

Commit 14ea111

Browse files
committed
feat!: release 1.0.0-beta: FUSE integration, FS5 sharding/GC, and
CLI expansion - Add `s5_fuse` crate for mounting S5 filesystems via FUSE - Implement FS5 actor-based sharding, garbage collection, and snapshot management - Expand CLI with `mount`, `blobs`, `snapshots`, `tree`, and `import` commands - Stabilize core protocols, node synchronization, and configuration formats - Add CI workflows, security policy, and comprehensive documentation guides
1 parent 0fa6b55 commit 14ea111

File tree

111 files changed

+12479
-2748
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+12479
-2748
lines changed

.github/workflows/ci.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
workflow_dispatch:
9+
10+
env:
11+
CARGO_TERM_COLOR: always
12+
13+
jobs:
14+
build-and-test:
15+
name: Build and Test
16+
runs-on: ubuntu-latest
17+
timeout-minutes: 30
18+
19+
steps:
20+
- uses: actions/checkout@v4
21+
22+
- name: Install Rust
23+
uses: dtolnay/rust-toolchain@stable
24+
with:
25+
components: rustfmt, clippy
26+
27+
- name: Rust Cache
28+
uses: Swatinem/rust-cache@v2
29+
30+
- name: Install cargo-nextest
31+
uses: taiki-e/install-action@nextest
32+
33+
- name: Check formatting
34+
run: cargo fmt --all -- --check
35+
36+
- name: Lint (Clippy)
37+
run: cargo clippy --workspace --all-targets -- -D warnings
38+
39+
- name: Build
40+
run: cargo build --workspace --locked --verbose
41+
42+
- name: Run Tests (Nextest)
43+
run: cargo nextest run --workspace --locked
44+
45+
- name: Run Doctests
46+
run: cargo test --workspace --doc --locked

0 commit comments

Comments
 (0)