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

bump Nushell and Nupm in the CI #188

Merged
merged 4 commits into from
Mar 6, 2024
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
tests:
uses: ./.github/workflows/nupm-tests.yml
with:
nu_version: "0.90.1"
nupm_revision: "66e2eaa848e3f72c1b4a841f26f4dc7efc4fedb9"
nu_version: "0.91.0"
nupm_revision: "29916fc43aad40ffe901b3c0be8820b9cb78fdba"

documentation:
uses: ./.github/workflows/check-documentation.yml
with:
nu_version: "0.90.1"
nu_version: "0.91.0"
2 changes: 1 addition & 1 deletion pkgs/nu-git-manager-sugar/tests/git.nu
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export def remote-list [] {
}

def "assert simple-git-tree-equal" [expected: list<string>, --extra-revs: list<string> = []] {
let actual = ^git log --oneline --decorate --graph --all $extra_revs
let actual = ^git log --oneline --decorate --graph --all ...$extra_revs
| lines
| parse "* {hash} {tree}"
| get tree
Expand Down
2 changes: 1 addition & 1 deletion pkgs/nu-git-manager/nu-git-manager/mod.nu
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ export def "gm squash-forks" [
export def "gm clean" [
--list # only list without cleaning
]: nothing -> list<path> {
let empty_directories_in_store = ls (gm status | get root.path | path join "**")
let empty_directories_in_store = ls (gm status | get root.path | path join "**" | into glob)
| where (ls $it.name | is-empty)
| get name
| path expand
Expand Down
2 changes: 1 addition & 1 deletion toolkit.nu
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def run-nu [code: string]: nothing -> any {
}

def rg [root: path, pattern: string]: nothing -> table<file: path, line: int, match: string> {
ls ($root | path join "**" "*")
ls ($root | path join "**" "*" | into glob)
| where type == file
| get name
| wrap file
Expand Down
Loading