Skip to content

give better error when tests/ not found #36

give better error when tests/ not found

give better error when tests/ not found #36

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/[email protected]
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"