We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51dfe92 commit 480239fCopy full SHA for 480239f
2 files changed
.github/workflows/ci.yml
@@ -0,0 +1,17 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: dtolnay/rust-toolchain@stable
15
+ - run: cargo test
16
+ - run: cargo clippy -- -D warnings
17
+ - run: cargo doc --no-deps
README.md
@@ -1,5 +1,7 @@
# patchwork
+[](https://github.com/sphaso/patchwork/actions/workflows/ci.yml)
A Rust library for diffing and patching sequences and nested structures.
## Features
0 commit comments