Skip to content

ci(deps): bump actions/upload-artifact from 4 to 5 #65

ci(deps): bump actions/upload-artifact from 4 to 5

ci(deps): bump actions/upload-artifact from 4 to 5 #65

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