Add host certificate support to server and client (#641) #772
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: Semver check | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| Build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Build (no features enabled) | |
| run: cargo build --verbose | |
| - name: Check semver compatibility (russh) | |
| id: semver | |
| uses: obi1kenobi/cargo-semver-checks-action@v2 | |
| continue-on-error: true | |
| with: | |
| package: russh | |
| - name: Warn on semver breakage | |
| if: steps.semver.outcome == 'failure' | |
| run: echo "::warning title=Semver check failed::cargo-semver-checks reported breaking changes in russh" |