Include more LSPs and tools that integrate with Helix #240
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Continuous Integration" | |
on: [push, pull_request] | |
env: | |
NIX_SHOW_STATS: 1 | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Install nix | |
uses: cachix/install-nix-action@v14 | |
with: | |
install_url: https://github.com/numtide/nix-unstable-installer/releases/latest/download/install | |
extra_nix_config: | | |
experimental-features = nix-command flakes | |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
system-features = nixos-test benchmark big-parallel kvm | |
- name: Test | |
run: nix flake check --log-format raw -v |