aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/rust.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 0b99577..ac5b89b 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -22,20 +22,20 @@ jobs:
- name: Build rapier3d
run: cargo build --verbose -p rapier 3d
- name: Build rapier2d SIMD
- command: cd build/rapier2d; cargo build --verbose --features simd-stable;
+ run: cd build/rapier2d; cargo build --verbose --features simd-stable;
- name: Build rapier3d SIMD
- command: cd build/rapier3d; cargo build --verbose --features simd-stable;
+ run: cd build/rapier3d; cargo build --verbose --features simd-stable;
- name: Build rapier2d SIMD Parallel
- command: cd build/rapier2d; cargo build --verbose --features simd-stable --features parallel;
+ run: cd build/rapier2d; cargo build --verbose --features simd-stable --features parallel;
- name: Build rapier3d SIMD Parallel
- command: cd build/rapier3d; cargo build --verbose --features simd-stable --features parallel;
+ run: cd build/rapier3d; cargo build --verbose --features simd-stable --features parallel;
- name: Cest
- command: cargo test
+ run: cargo test
- name: Check rapier_testbed2d
- command: cargo check --verbose -p rapier_testbed2d;
+ run: cargo check --verbose -p rapier_testbed2d;
- name: Check rapier_testbed3d
- command: cargo check --verbose -p rapier_testbed3d;
+ run: cargo check --verbose -p rapier_testbed3d;
- name: Check rapier-examples-2d
- command: cargo check -j 1 --verbose -p rapier-examples-2d;
+ run: cargo check -j 1 --verbose -p rapier-examples-2d;
- name: Check rapier-examples-3d
- command: cargo check -j 1 --verbose -p rapier-examples-3d;
+ run: cargo check -j 1 --verbose -p rapier-examples-3d;