Skip to content

Commit 88b7a88

Browse files
committed
feat: initial commit
add the core of the plugin
0 parents  commit 88b7a88

9 files changed

Lines changed: 1226 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- uses: dtolnay/rust-toolchain@stable
15+
with:
16+
targets: wasm32-wasip1
17+
components: clippy, rustfmt
18+
19+
- run: cargo fmt --check
20+
- run: cargo clippy --target wasm32-wasip1 -- -D warnings
21+
- run: cargo build --target wasm32-wasip1 --release

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
target
2+
extension.wasm

0 commit comments

Comments
 (0)