joinstr: use different derivation path for test networks in WpkhHotSi… #141
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| linter: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: 1.84.0 | |
| components: rustfmt, clippy | |
| override: true | |
| - name: rustfmt | |
| run: cargo fmt -- --check | |
| - name: clippy | |
| run: cargo clippy --all-features --all-targets -- -D warnings | |
| tests: | |
| needs: linter | |
| strategy: | |
| matrix: | |
| toolchain: | |
| - 1.75 | |
| - nightly | |
| os: | |
| - ubuntu-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| override: true | |
| profile: minimal | |
| - name: tests | |
| run: cargo test --verbose --color always -- --nocapture | |
| build: | |
| needs: tests | |
| strategy: | |
| matrix: | |
| toolchain: | |
| - 1.75 | |
| os: | |
| - ubuntu-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: actions-rs/toolchain@v1 | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| override: true | |
| profile: minimal | |
| - name: tests | |
| run: cargo build --release | |