check all rust build

This commit is contained in:
alingse
2022-06-07 23:43:22 +08:00
parent 0f3fc61600
commit 134786a776

View File

@@ -16,7 +16,9 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Build
run: cargo build --verbose - name: Build All
- name: Run tests run: find */rust/Cargo.toml|xargs -I {} dirname {}|xargs -I {} bash -c 'cd {} && cargo build --verbose'
run: cargo test --verbose
- name: Run All tests
run: find */rust/Cargo.toml|xargs -I {} dirname {}|xargs -I {} bash -c 'cd {} && cargo test --verbose'