forked from Majored/rs-async-zip
-
Notifications
You must be signed in to change notification settings - Fork 6
51 lines (36 loc) · 1.17 KB
/
ci-linux.yml
File metadata and controls
51 lines (36 loc) · 1.17 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 (Linux)
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
permissions: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: Test [no features]
run: cargo test --verbose
- name: Test ['tokio' feature]
run: cargo test --verbose --features tokio
- name: Test ['tokio-fs' feature]
run: cargo test --verbose --features tokio-fs
- name: Test ['deflate' feature]
run: cargo test --verbose --features deflate
- name: Test ['bzip2' feature]
run: cargo test --verbose --features bzip2
- name: Test ['lzma' feature]
run: cargo test --verbose --features lzma
- name: Test ['zstd' feature]
run: cargo test --verbose --features zstd
- name: Test ['xz' feature]
run: cargo test --verbose --features xz
- name: Test ['deflate64' feature]
run: cargo test --verbose --features deflate64
- name: Test ['full' feature]
run: cargo test --verbose --features full