Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Rust

on:
push:
branches: ["main"]
branches: ["main", "dev-rust-port"]
pull_request:
branches: ["*"]
branches: ["main", "dev-rust-port", "*"]

env:
CARGO_TERM_COLOR: always
Expand All @@ -23,6 +23,16 @@ jobs:
- name: Test
run: cargo test

test-no_std:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2

- name: Test
run: cargo test --features no_std

test-legacy:
runs-on: ubuntu-latest

Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ rust-analyzer
# tip: on mac put '.DS_Store' in your global gitignore
.DS_Store

out_*_orient_2d.png
*.png
Loading