Support for Home/End keys to jump to the beginning/end of why-depend modal lines #418
Workflow file for this run
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: "nix-build" | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v30 | |
| with: | |
| extra_nix_config: | | |
| experimental-features = nix-command flakes | |
| - uses: cachix/cachix-action@v15 | |
| with: | |
| name: utdemir | |
| signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' | |
| - run: nix build | |
| - run: nix develop -c echo | |
| - run: nix develop -c ./format.sh check |