Skip to content

add support to install modules from non standard locations #2

add support to install modules from non standard locations

add support to install modules from non standard locations #2

Workflow file for this run

on:
pull_request:
push:
branches:
- main
name: continuous-integration
jobs:
tests:
strategy:
fail-fast: true
matrix:
platform: [windows-latest, macos-latest, ubuntu-20.04]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
with:
rustflags: ""
- name: Install Nushell
run: cargo install --locked --git https://github.com/nushell/nushell.git nu
- name: Run the tests
run: nu --commands "use $PWD/nupm/; nupm test"