fix(deps): update rust crate reqwest-middleware-03 to ^0.4 #868
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: Build and test SDK | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install build dependencies | |
run: sudo apt-get install protobuf-compiler | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
components: rustfmt, clippy | |
- name: Run clippy | |
run: cargo clippy -- -D warnings | |
- name: Check for non-default features | |
run: cargo check --no-default-features --features rustls-021 | |
- name: Run cargo format | |
run: cargo fmt --check | |
- name: Test | |
run: cargo test --features=integration_tests | |
env: | |
COGNITE_PROJECT: opcua-interface-test | |
COGNITE_BASE_URL: https://greenfield.cognitedata.com | |
COGNITE_TOKEN_URL: ${{ secrets.TOKEN_URL }} | |
COGNITE_SCOPES: https://greenfield.cognitedata.com/.default | |
COGNITE_CLIENT_ID: ${{ secrets.CLIENT_ID }} | |
COGNITE_CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }} | |
CORE_DM_TEST_SPACE: ${{ secrets.CORE_DM_TEST_SPACE }} |