Update deploy-docs.yml #14
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: Rust | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run tests on async-std-runtime | |
run: cd swarm_nl && cargo test --features=async-std-runtime | |
- name: Run tests on tokio-runtime | |
run: cd swarm_nl && cargo test --features=tokio-runtime |