Skip to content

Commit cdb8b2b

Browse files
committed
Initial commit.
Signed-off-by: James Goppert <james.goppert@gmail.com>
0 parents  commit cdb8b2b

15 files changed

+3218
-0
lines changed

.github/workflows/rust.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Rust
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
12+
jobs:
13+
build:
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
- name: Format
20+
run: cargo fmt --all --check
21+
- name: Lint
22+
run: cargo clippy --all-targets --all-features -- -D warnings
23+
- name: Run tests
24+
run: cargo test --verbose

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/target
2+
.vscode
3+
*.py
4+
*.orig

0 commit comments

Comments
 (0)