aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2020-09-28 11:43:44 +0200
committerCrozet Sébastien <developer@crozet.re>2020-09-28 11:43:44 +0200
commitd3589b24ce59017fcf83c06f34ab4ba1cc098129 (patch)
treee85b2fda9bfdb00e4dd62eaee3532b10a3df83bb
parent65b9d3a7a7139e5c8fac8c3c5d34b0aaf816fbe5 (diff)
downloadrapier-d3589b24ce59017fcf83c06f34ab4ba1cc098129.tar.gz
rapier-d3589b24ce59017fcf83c06f34ab4ba1cc098129.tar.bz2
rapier-d3589b24ce59017fcf83c06f34ab4ba1cc098129.zip
Actions: use run instead of command.
-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;