feat: Allow put_metric_data to be sent gzipped #258
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
# All features except integration-test as we haven't setup an AWS account on github CI for those to work | |
FEATURES: "gzip" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dtolnay/rust-toolchain@stable | |
- name: Lint | |
run: cargo fmt -- --check && ./clippy.sh | |
- name: Test | |
run: cargo test --all-targets --features "${FEATURES}" | |
- name: Check no-default-features | |
run: cargo check --all-targets --no-default-features |