Skip to content

Commit 5ebc776

Browse files
arakabCLPLeVasseur
andauthored
Initial project scaffold and CI setup (#64)
* feat: Initial project scaffold and CI setup * Update Cargo.toml Co-authored-by: Pete LeVasseur <plevasseur@gmail.com> * Update Cargo.toml Co-authored-by: Pete LeVasseur <plevasseur@gmail.com> * Update src/lib.rs Co-authored-by: Pete LeVasseur <plevasseur@gmail.com> * added new implementations * fixed method definitions --------- Co-authored-by: Pete LeVasseur <plevasseur@gmail.com>
1 parent ef19a87 commit 5ebc776

5 files changed

Lines changed: 1403 additions & 0 deletions

File tree

.github/workflows/check.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Rust Project CI
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build_and_test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Build
17+
run: cargo build --verbose
18+
19+
- name: Run tests
20+
run: cargo test --verbose

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

0 commit comments

Comments
 (0)