Skip to content

chore(deps): bump console from 0.16.3 to 0.16.4 #499

chore(deps): bump console from 0.16.3 to 0.16.4

chore(deps): bump console from 0.16.3 to 0.16.4 #499

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v7.0.0
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Cache cargo artifacts
uses: Swatinem/rust-cache@v2
- name: Check formatting
run: cargo fmt --check
- name: Run clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Run cargo check
run: cargo check --workspace --all-targets --locked
- name: Run tests
run: cargo test --workspace --all-targets --locked