Created Buffer #4
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: [ "develop" ] | |
pull_request: | |
branches: [ "develop" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build Sync | |
run: cargo build --no-default-features --features sync --verbose | |
- name: Run Sync tests | |
run: cargo test --no-default-features --features sync --verbose | |
- name: Build Async | |
run: cargo build --no-default-features --features async-tokio --verbose | |
- name: Run Async tests | |
run: cargo test --no-default-features --features async-tokio --verbose |