README: add karyon_jsonrpc crate link #132
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 Build & Test | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
name: karyon - latest | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
toolchain: | |
- stable | |
steps: | |
- uses: actions/checkout@v3 | |
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} | |
- name: Build with smol | |
run: cargo build --workspace --verbose | |
- name: Build with tokio | |
run: cargo build --workspace --no-default-features --features tokio --verbose | |
- name: Run tests | |
run: cargo test --workspace --verbose | |
- name: Run clippy | |
run: cargo clippy -- -D warnings | |
- name: Run fmt | |
run: cargo fmt --all -- --check |