Skip to content

Commit

Permalink
use github's interpolation to be windows compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyler committed Sep 3, 2024
1 parent 70ecc4a commit 4ee4e54
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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: |
Expand Down

0 comments on commit 4ee4e54

Please sign in to comment.