Change nix run to nix develop for R library

This commit is contained in:
Daniel Winkler 2025-09-10 18:49:18 +10:00 committed by GitHub
commit 01956fa8a7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -28,4 +28,4 @@ jobs:
extraPullNames: rstats-on-nix, nix-community extraPullNames: rstats-on-nix, nix-community
- run: nix build . - run: nix build .
- run: nix flake check . --all-systems - run: nix flake check . --all-systems
- run: nix run -c "R -e 'library(httpgd)'" - run: nix develop -c "R -e 'library(httpgd)'"