fix nvim-treesitter integration with scala, smithy and nix #1
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'LICENSE' | |
| - 'README.md' | |
| - 'docs/**' | |
| - 'statix.toml' | |
| - '.gitignore' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2.3.2 | |
| - name: "Install Nix ❄️" | |
| uses: cachix/install-nix-action@v30 | |
| - name: "Install Cachix ❄️" | |
| uses: cachix/cachix-action@v15 | |
| with: | |
| name: gvolpe-nixos | |
| authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
| - name: "Build Metals overlay 🔧" | |
| run: nix run .#metals -- -version | |
| - name: "Build tree-sitter-scala from master 🔧" | |
| run: nix build .#ts-scala -L | |
| - name: "Build NeoVim flake ❄️" | |
| run: nix build .#ide | |
| - name: "Build NeoVim Scala ❄️" | |
| run: | | |
| nix build .#scala | |
| nix build .#scala-rose-pine | |
| nix build .#scala-tokyo-night |