Skip to content

Update handle_client.rs #100

Update handle_client.rs

Update handle_client.rs #100

name: build and test
on:
push
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features