perf: stop spurious mesh epoch churn; drop per-chunk zero-fill in sil… #77
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # silkd is guest-side and vsock-only on Linux, so the full test suite | |
| # (including the Linux-gated listener build) must run on a Linux runner; | |
| # protocol/ fixtures are test inputs, so changes there re-run the suite too. | |
| name: silkd | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - "silkd/**" | |
| - "protocol/**" | |
| pull_request: | |
| paths: | |
| - "silkd/**" | |
| - "protocol/**" | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: fmt + clippy + test | |
| working-directory: silkd | |
| run: | | |
| cargo fmt --check | |
| cargo clippy --all-targets -- -D warnings | |
| cargo test |