Skip to content

Add tokio console feature #587

Add tokio console feature

Add tokio console feature #587

Workflow file for this run

name: Rust CI
on: [push, pull_request]
jobs:
build_and_test:
name: Rust Cargo CI on ${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v6.0.1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Cargo format
uses: actions-rs/cargo@v1
with:
command: fmt
args: --check
- name: Cargo test
uses: actions-rs/cargo@v1
with:
command: test
- name: Cargo release + all feature build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features
- name: Show development + release build sizes
run: |
ls -lh target/debug/
ls -lh target/release/