-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add use Nu of full features support
- Loading branch information
Showing
5 changed files
with
85 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Nu Full Features Check | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- develop | ||
- release/* | ||
paths-ignore: | ||
- '**.md' | ||
|
||
defaults: | ||
run: | ||
shell: nu {0} | ||
|
||
jobs: | ||
test-matrix: | ||
strategy: | ||
matrix: | ||
os: [windows-latest, ubuntu-22.04, macos-latest] | ||
ver: [0.86] | ||
|
||
runs-on: ${{ matrix.os }} | ||
name: test (${{matrix.os}}, nu@${{matrix.ver}}) | ||
steps: | ||
- uses: actions/[email protected] | ||
- name: Setup nu@${{matrix.ver}} | ||
uses: hustcer/setup-nu@develop | ||
with: | ||
feature: full | ||
enable-plugins: true | ||
version: ${{matrix.ver}} | ||
env: | ||
ACTIONS_STEP_DEBUG: true | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Show Nu Version | ||
run: print $'Nu version info:(char nl)'; print (version) | ||
- name: Show env Variables | ||
run: print $'Current env:(char nl)'; print $env | ||
- name: Show Nu Binary Path | ||
run: print $'Nu path:(which nu)(char nl)' | ||
- name: Show Nu Package Contents | ||
run: print $"(char nl)Dir contents:(char nl)"; print (ls ((which nu).path.0 | path dirname)) |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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