test gm
commands end to end
#79
Workflow file for this run
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
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
name: continuous-integration | |
defaults: | |
run: | |
shell: nu {0} | |
env: | |
NU_LOG_LEVEL: DEBUG | |
jobs: | |
tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: [windows-latest, macos-latest, ubuntu-20.04] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: hustcer/[email protected] | |
with: | |
version: 'nightly' | |
- name: Install Nupm from Source | |
run: git clone https://github.com/nushell/nupm ~/nupm/ | |
- name: Show Nushell Version | |
run: version | |
- name: Show Git Version | |
run: git --version | |
- name: Run the tests | |
run: | | |
use ~/nupm/nupm/ | |
nupm test "internals" | |
nupm test "gm" |