Skip to content

Build with Nix Workflow #81

Build with Nix Workflow

Build with Nix Workflow #81

Workflow file for this run

name: Build with Nix Workflow
on:
schedule:
- cron: '0 0 * * 1'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- uses: styfle/[email protected]
name: Cancel Outdated Builds
with:
all_but_latest: true
access_token: ${{ github.token }}
- name: Install Nix
uses: cachix/install-nix-action@v26
- name: Checkout Repository
uses: actions/checkout@v4
# sanity check that repository builds with nix
- name: Build
run: |
nix develop -c cargo build --all-targets --release --workspace