Skip to content

Update Dependencies and Workflow (#13) #30

Update Dependencies and Workflow (#13)

Update Dependencies and Workflow (#13) #30

Workflow file for this run

name: Test flake
on:
pull_request:
push:
branches:
- main
env:
CACHIX_BINARY_CACHE: altf4llc-os
jobs:
build:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
profile:
- default
- neovim
runs-on: ${{ matrix.os }}
steps:
- uses: cachix/install-nix-action@v26
with:
enable_kvm: true
nix_path: nixpkgs=channel:nixos-unstable
- uses: cachix/cachix-action@v14
with:
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
name: ${{ env.CACHIX_BINARY_CACHE }}
- uses: actions/checkout@v4
- run: nix develop -c just check
- run: nix develop -c just build "${{ matrix.profile }}"