cargo(deps): bump serde from 1.0.223 to 1.0.226 #61
Workflow file for this run
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | 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 |