Upgrade hotdog to use a more recent version of rustls #96
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: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Prepare | |
| run: sudo apt-get install -qy libsasl2-dev | |
| #- uses: actions-rs/clippy-check@v1 | |
| # with: | |
| # token: ${{ secrets.GITHUB_TOKEN }} | |
| # args: --all-features | |
| - name: Run cargo fmt | |
| run: cargo fmt --all -- --check | |
| - name: Build | |
| run: cargo build --verbose | |
| - name: Run tests | |
| run: cargo test --verbose | |
| - name: Run tests with simd | |
| run: cargo test --verbose --features simd |