Skip to content

Bump rust from 1.76.0-bookworm to 1.77.0-bookworm in /.devcontainer #68

Bump rust from 1.76.0-bookworm to 1.77.0-bookworm in /.devcontainer

Bump rust from 1.76.0-bookworm to 1.77.0-bookworm in /.devcontainer #68

Workflow file for this run

name: ci
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- run: cargo fmt -- --check
- run: cargo clippy --all-features -- --deny warnings
- run: cargo test --all-features