Bump backend/curl version 0.4.1 #34
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 (blocking) | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| test-blocking-stream-linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test curl | |
| run: cargo test -p nyquest-backend-tests --verbose --features blocking-stream,curl,multipart | |
| test-blocking-stream-windows-winrt: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test winrt | |
| run: cargo test -p nyquest-backend-tests --verbose --features blocking-stream,winrt,multipart | |
| test-blocking-stream-windows-winhttp: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test winhttp | |
| run: cargo test -p nyquest-backend-tests --verbose --features blocking-stream,winhttp,multipart | |
| test-blocking-stream-macos: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test nsurlsession | |
| run: cargo test -p nyquest-backend-tests --verbose --features blocking-stream,nsurlsession,multipart | |
| test-blocking-stream-reqwest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test reqwest | |
| run: cargo test -p nyquest-backend-tests --verbose --features blocking-stream,reqwest,multipart |