Skip to content

Commit d4970ae

Browse files
committed
Initial commit
0 parents  commit d4970ae

File tree

8 files changed

+1662
-0
lines changed

8 files changed

+1662
-0
lines changed

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ develop ]
6+
pull_request: { }
7+
8+
jobs:
9+
lint:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: fmt
14+
run: cargo fmt --all --check
15+
- name: clippy
16+
run: cargo clippy --all-features --all-targets -- -D warnings
17+
18+
test:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Run tests
23+
run: cargo test
24+
build-docs:
25+
runs-on: ubuntu-latest
26+
steps:
27+
- uses: actions/checkout@v4
28+
- name: Build docs
29+
run: cargo doc --no-deps
30+
31+

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/target
2+
/.vscode/
3+
/.idea/

0 commit comments

Comments
 (0)