Skip to content

Update Zerl version and client build system #29

Update Zerl version and client build system

Update Zerl version and client build system #29

Workflow file for this run

name: "[Build] Client"
on:
push:
branches: [ "master" ]
paths:
- .github/workflows/**
- client/**
- flake.nix
- flake.lock
pull_request:
branches: [ "master" ]
paths:
- .github/workflows/**
- client/**
- flake.nix
- flake.lock
permissions:
contents: read
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v26
with:
# Mostly to avoid GitHub rate limiting
extra_nix_config: |
access-tokens = github.com=${{ github.token }}
- name: Install Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: "[Client] Build"
run: |
nix develop .#ci --impure -c just client-build-ci
- name: "[Client] Tests"
run: |
nix develop .#ci --impure -c just client-test-ci