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
Failed to generate hash of commit

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)'"