Skip to content

Updated repo with latest template #22

Updated repo with latest template

Updated repo with latest template #22

Workflow file for this run

name: Test CI
on: [push, pull_request]
jobs:
test-flake:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Cache Nix store
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Check up flake configuration
run: nix flake check --all-systems --show-trace
test-image:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
- name: Cache Nix store
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Test project
run: nix build
- name: Test project
run: nix develop --command -- cargo test