Skip to content

feat: Allow put_metric_data to be sent gzipped #258

feat: Allow put_metric_data to be sent gzipped

feat: Allow put_metric_data to be sent gzipped #258

Workflow file for this run

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