Introduce 'FitsMMappedCIndex' trait to remove redundant code in CLI #19
This file contains hidden or 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
| name: TestCli | |
| on: [push] | |
| jobs: | |
| test: | |
| name: Test on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macOS-latest] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Unit cli tests | |
| run: cargo test --package hpx-cli | |
| - name: Install cli | |
| run: cargo install --path crates/cli | |
| - name: Integration cli tests | |
| run: | | |
| cd crates/cli/test | |
| ./test.bash | |