Add default features for time and compression #26
Workflow file for this run
This file contains 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: Rust | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check | |
run: cargo check | |
test: | |
runs-on: '${{ matrix.os }}' | |
strategy: | |
matrix: | |
include: | |
- os: macos-latest | |
- os: ubuntu-latest | |
- os: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Test (default features) | |
run: cargo test | |
- name: Test (no default features) | |
run: cargo test --tests --no-default-features | |
- name: Test (compression feature only) | |
run: cargo test --tests --no-default-features --features compression | |
- name: Test (time feature only) | |
run: cargo test --tests --no-default-features --features time |