Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): lock file maintenance #21

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/flake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4
- run: nix develop -c just check

build:
package:
needs:
- check
strategy:
Expand All @@ -49,4 +49,4 @@ jobs:
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
name: ${{ env.CACHIX_BINARY_CACHE }}
- uses: actions/checkout@v4
- run: nix develop -c just build "${{ matrix.profile }}"
- run: nix develop -c just package "${{ matrix.profile }}"
26 changes: 13 additions & 13 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
build profile="default":
_default:
just --list

package profile="default":
nix build --json --no-link --print-build-logs ".#{{ profile }}"

check:
Expand Down
2 changes: 1 addition & 1 deletion lib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ in rec {
nodePackages."bash-language-server"
nodePackages."diagnostic-languageserver"
nodePackages."dockerfile-language-server-nodejs"
nodePackages."pyright"
nodePackages."typescript"
nodePackages."typescript-language-server"
nodePackages."vscode-langservers-extracted"
Expand All @@ -106,6 +105,7 @@ in rec {
pkgs.nls
pkgs.omnisharp-roslyn
pkgs.postgres-lsp
pkgs.pyright
pkgs.rust-analyzer
pkgs.sourcekit-lsp
pkgs.terraform-ls
Expand Down
Loading