Skip to content

graceful shutdown of db server connection #72

graceful shutdown of db server connection

graceful shutdown of db server connection #72

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: clippy, rustfmt
- run: cargo build
- run: cargo test
- run: cargo fmt --all -- --check
- run: cargo check
- run: cargo clippy