Skip to content

Commit

Permalink
CI: run unit tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveLauC committed Aug 6, 2024
1 parent ef2c352 commit e73c9ea
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,33 @@ jobs:
RUST_LOG: debug
RUST_BACKTRACE: full


# Test external crate.
rt-monoio:
runs-on: ubuntu-latest

steps:
- name: Setup | Checkout
uses: actions/checkout@v2


- name: Setup | Toolchain
uses: actions-rs/[email protected]
with:
toolchain: "nightly"
override: true


- name: Unit Tests
uses: actions-rs/cargo@v1
with:
command: test
args: --tests --manifest-path "rt-monoio/Cargo.toml"
env:
RUST_LOG: debug
RUST_BACKTRACE: full


# Feature "serde" will be enabled if one of the member crates enables
# "serde", such as `memstore`, when building a cargo workspace.
#
Expand Down

0 comments on commit e73c9ea

Please sign in to comment.