feat: use rust lsp the "normal" way through automatic lsp start #19
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
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| build-pkg: | |
| name: Build Nix package | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [macos-latest, ubuntu-latest] | |
| permissions: | |
| id-token: write | |
| contents: read | |
| steps: | |
| - uses: actions/[email protected] | |
| - name: Check Nix flake inputs | |
| uses: DeterminateSystems/flake-checker-action@main # This action | |
| - name: Install Nix | |
| uses: DeterminateSystems/[email protected] | |
| - name: Use Action cache | |
| uses: DeterminateSystems/magic-nix-cache-action@main | |
| with: | |
| diff-store: true | |
| - name: Build default package | |
| run: nix build |