diff --git a/.github/workflows/full-matrix.yaml b/.github/workflows/full-matrix.yaml index 3741e08..075a0a0 100644 --- a/.github/workflows/full-matrix.yaml +++ b/.github/workflows/full-matrix.yaml @@ -18,7 +18,7 @@ jobs: strategy: matrix: os: [windows-latest, ubuntu-22.04, macos-latest] - ver: [0.93.0, 0.92.2, 0.91.0, 0.90.1, 0.88.1, 0.87.1, 0.86] + ver: [0.93.0, 0.92.2, 0.91.0, 0.90.1, 0.89.0, 0.88.1, 0.87.1, 0.86] runs-on: ${{ matrix.os }} name: test (${{matrix.os}}, nu@${{matrix.ver}}) @@ -40,26 +40,3 @@ jobs: 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)) - - nightly-matrix: - strategy: - matrix: - os: [windows-latest, ubuntu-22.04, macos-latest] - - runs-on: ${{ matrix.os }} - name: test (${{matrix.os}}, nu@nightly) - steps: - - uses: actions/checkout@v4.1.6 - - name: Setup nu@nightly - uses: hustcer/setup-nu@develop - with: - version: nightly - enable-plugins: true - env: - ACTIONS_STEP_DEBUG: true - - name: Show Nu Version - run: print $'Nu version info:(char nl)'; print (version) - - 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))