backend/curl handle pause related errors (#46) #223
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 backends (async) | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test-async-linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test curl | |
| run: cargo test -p nyquest-backend-tests --verbose --features async,curl,multipart | |
| test-async-windows-winrt: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test winrt | |
| run: cargo test -p nyquest-backend-tests --verbose --features async,winrt,multipart | |
| test-async-windows-winhttp: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test winhttp | |
| run: cargo test -p nyquest-backend-tests --verbose --features async,winhttp,multipart | |
| test-async-macos: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test nsurlsession | |
| run: cargo test -p nyquest-backend-tests --verbose --features async,nsurlsession,multipart | |
| test-async-reqwest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test reqwest | |
| run: cargo test -p nyquest-backend-tests --verbose --features async,reqwest,multipart |