Cargo Test #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cargo Test | |
on: | |
workflow_run: | |
workflows: ["Cargo Check"] | |
types: | |
- completed | |
jobs: | |
test: | |
runs-on: | |
labels: movement-runner | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Set up Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: 1.69.0 | |
- name: Build and Test Subnet | |
run: | | |
cd ./m1 | |
RUSTFLAGS="--cfg tokio_unstable" cargo test --lib # this should only be the lib tests | |
- name: Update Badge | |
run: | | |
if [ $? -eq 0 ]; then | |
sed -i 's/badge\/tests-[a-zA-Z]*/badge\/tests-Passing-brightgreen/g' README.md | |
else | |
sed -i 's/badge\/tests-[a-zA-Z]*/badge\/tests-Failing-red/g' README.md | |
fi | |
if: ${{ always() }} |