-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pass long flags in toolkit for clarity
- Loading branch information
1 parent
b0ac04e
commit 76a7752
Showing
3 changed files
with
11 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
on: | ||
push: | ||
branches: | ||
branches: | ||
- main | ||
schedule: | ||
- cron: '30 0 * * *' # every day at 00:30 AM UTC | ||
- cron: "30 0 * * *" # every day at 00:30 AM UTC | ||
|
||
env: | ||
NUSHELL_CARGO_PROFILE: ci | ||
|
@@ -15,19 +15,15 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: 'Fetch main branch' | ||
- name: "Fetch main branch" | ||
run: | | ||
git fetch origin main --depth 1 | ||
git fetch origin main --depth 1 | ||
- uses: hustcer/[email protected] | ||
with: | ||
version: '*' | ||
check-latest: true | ||
features: full # dataframe and extra included | ||
- name: toolkit generate-file-list --full | ||
version: "*" | ||
check-latest: true | ||
features: full # dataframe and extra included | ||
- name: toolkit check pr --full | ||
shell: nu {0} | ||
run: | | ||
nu -c "use toolkit.nu *; generate-file-list --full" | ||
- name: run nu-check on all files | ||
shell: nu {0} | ||
run: | | ||
nu ./check-files.nu | ||
nu --commands 'use toolkit.nu *; check pr --full --and-exit' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters