-
Notifications
You must be signed in to change notification settings - Fork 9
51 lines (39 loc) · 1.24 KB
/
Copy pathbackend-tests-blocking.yml
File metadata and controls
51 lines (39 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Test backends (blocking)
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
test-blocking-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test curl
run: cargo test -p nyquest-backend-tests --verbose --features blocking,curl,multipart
test-blocking-windows-winrt:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Test winrt
run: cargo test -p nyquest-backend-tests --verbose --features blocking,winrt,multipart
test-blocking-windows-winhttp:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Test winhttp
run: cargo test -p nyquest-backend-tests --verbose --features blocking,winhttp,multipart
test-blocking-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Test nsurlsession
run: cargo test -p nyquest-backend-tests --verbose --features blocking,nsurlsession,multipart
test-blocking-reqwest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test reqwest
run: cargo test -p nyquest-backend-tests --verbose --features blocking,reqwest,multipart