-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from rpl-cmu/dev
v0.2.0
- Loading branch information
Showing
82 changed files
with
28,886 additions
and
2,683 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: ci | ||
|
||
on: | ||
push: | ||
branches: [ "master", "dev" ] | ||
pull_request: | ||
branches: [ "master", "dev" ] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
# Loosely based on | ||
# https://github.com/nushell/nushell/blob/8771872d861eeb94eec63051cb4938f6306d1dcd/.github/workflows/ci.yml | ||
# https://www.reillywood.com/blog/rust-faster-ci/ | ||
jobs: | ||
fmt-clippy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Setup Rust toolchain and cache | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
toolchain: 1.83 | ||
components: rustfmt,clippy | ||
|
||
- name: cargo fmt | ||
run: cargo fmt --all -- --check | ||
|
||
- name: clippy | ||
run: cargo clippy | ||
- name: clippy of tests | ||
run: cargo clippy --tests | ||
|
||
tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Setup Rust toolchain and cache | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
toolchain: 1.83 | ||
|
||
- name: default | ||
run: cargo test | ||
- name: serde | ||
run: cargo test --features serde | ||
- name: f32 | ||
run: cargo test --features f32 | ||
- name: left | ||
run: cargo test --features left | ||
- name: fake_exp | ||
run: cargo test --features fake_exp |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
/target | ||
/build | ||
.vscode | ||
*.g2o | ||
*.svg | ||
*.png | ||
*.sh | ||
perf* | ||
perf* | ||
|
||
factrs-proc/target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "factrs-typetag"] | ||
path = factrs-typetag | ||
url = git@github.com:contagon/factrs-typetag.git |
Oops, something went wrong.