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
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test [no features]
run: cargo test --verbose
- name: Test ['chrono' feature]
run: cargo test --verbose --features chrono
- 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
|