From 4ee4e5405d471308cfeed6505d4bf71a8fb3719c Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Fri, 30 Aug 2024 22:52:31 +0000 Subject: [PATCH] use github's interpolation to be windows compatible --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e6ec18bef7..d67faa62c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -71,13 +71,13 @@ jobs: override: true - name: build and lint with clippy - run: cargo clippy --features ${DEFAULT_FEATURES} --tests + run: cargo clippy --features ${{ env.DEFAULT_FEATURES }} --tests - name: Spot-check build for native-tls features run: cargo clippy --no-default-features --features azure,datafusion,s3-native-tls,gcs,glue --tests - name: Check docs - run: cargo doc --features ${DEFAULT_FEATURES } + run: cargo doc --features ${{ env.DEFAULT_FEATURES }} - name: Check no default features (except rustls) run: cargo check --no-default-features --features rustls @@ -108,7 +108,7 @@ jobs: override: true - name: Run tests - run: cargo test --verbose --features ${DEFAULT_FEATURES} + run: cargo test --verbose --features ${{ env.DEFAULT_FEATURES }} integration_test: name: Integration Tests @@ -158,7 +158,7 @@ jobs: - name: Run tests with rustls (default) run: | - cargo test --features integration_test,${DEFAULT_FEATURES} + cargo test --features integration_test,${{ env.DEFAULT_FEATURES }} - name: Run tests with native-tls run: |