Quick fix re-export #122
Workflow file for this run
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: Test | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| env: | |
| CARGO_TERM_COLOR: never | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 | |
| - name: Run tests (all features) | |
| run: cargo test --all-features | |
| - name: Run tests (acme_dns) | |
| run: cargo test --features acme_dns | |
| - name: Run tests (acme_alpn) | |
| run: cargo test --features acme_alpn | |
| - name: Run tests (vector) | |
| run: cargo test --features vector | |
| - name: Run tests (clients-hyper) | |
| run: cargo test --features clients-hyper |