Actions: use run instead of command.

This commit is contained in:
Crozet Sébastien
2020-09-28 11:43:44 +02:00
parent 65b9d3a7a7
commit d3589b24ce

View File

@@ -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;