avoid java-language-server for now #40
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: "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 | |