update dependencies, including rustls-pki-types #118
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: Rust | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Build | |
| run: cargo build --verbose | |
| - name: Build with Rusttls | |
| run: cargo build --verbose --no-default-features --features rust-tls | |
| - name: Run tests | |
| run: cargo test --verbose | |
| - name: Run tests with rust-tls | |
| run: cargo test --verbose --no-default-features --features rust-tls |