Skip to content

cargo(deps): bump clap from 4.5.45 to 4.5.49 #63

cargo(deps): bump clap from 4.5.45 to 4.5.49

cargo(deps): bump clap from 4.5.45 to 4.5.49 #63

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Setup Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Build project
run: nix develop --command cargo build -F alkali --release
- name: Run tests
run: nix develop --command cargo test -F alkali
- name: Check formatting
run: nix develop --command cargo fmt -- --check
- name: Run clippy
run: nix develop --command cargo clippy -- -D warnings