From 94e48e2a64d2a96107aa4c9907a74eec4fafee78 Mon Sep 17 00:00:00 2001 From: Texas Toland Date: Thu, 14 Mar 2024 11:15:08 -0500 Subject: [PATCH] Enable stub and simplify CI command --- .github/workflows/ci.yml | 6 +++++- .github/workflows/daily.yml | 4 +++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99bb08209..0396919b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,11 @@ jobs: version: "*" check-latest: true features: full # dataframe and extra included + - name: debug paths + run: echo $0 - name: toolkit check pr shell: nu {0} + # nix STUB_IDE_CHECK when nushell/nushell#12208 fixed run: | - nu --commands 'use toolkit.nu *; check pr --and-exit' + use toolkit.nu * + STUB_IDE_CHECK=true check pr --and-exit diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 9c1911e60..fe5a72bd4 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -25,5 +25,7 @@ jobs: features: full # dataframe and extra included - name: toolkit check pr --full shell: nu {0} + # nix STUB_IDE_CHECK when nushell/nushell#12208 fixed run: | - nu --commands 'use toolkit.nu *; check pr --full --and-exit' + use toolkit.nu * + STUB_IDE_CHECK=true check pr --full --and-exit