Skip to content

Ability to customize used nix packages #39

Ability to customize used nix packages

Ability to customize used nix packages #39

Workflow file for this run

name: "Test"
on:
pull_request:
push:
branches:
- master
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v19
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Prepare Nix deps
run: nix-shell --run "nvim --version"
- name: Run tests
run: nix-shell --run scripts/test
- name: Check formatting
run: nix-shell --run scripts/fmt