Skip to content

build(deps): bump tokio-uring from 0.4.0 to 0.5.0 #2

build(deps): bump tokio-uring from 0.4.0 to 0.5.0

build(deps): bump tokio-uring from 0.4.0 to 0.5.0 #2

Workflow file for this run

name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout Source Code
uses: actions/checkout@v4
- name: Set up Rust Toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache Cargo Dependencies
uses: Swatinem/rust-cache@v2
- name: Check Code Formatting
run: cargo fmt --all --check
- name: Run Clippy Linter
run: cargo clippy -- -D warnings
- name: Build Codebase
run: cargo build --verbose