Skip to content

chore(deps-dev): bump boto3-stubs[dynamodb,kms] from 1.35.29 to 1.35.34 in /canary in the canary-pip-dependencies group #66

chore(deps-dev): bump boto3-stubs[dynamodb,kms] from 1.35.29 to 1.35.34 in /canary in the canary-pip-dependencies group

chore(deps-dev): bump boto3-stubs[dynamodb,kms] from 1.35.29 to 1.35.34 in /canary in the canary-pip-dependencies group #66

Workflow file for this run

name: Rust
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
env:
RUST_BACKTRACE: 1
CARGO_TERM_COLOR: always
jobs:
test:
if: github.repository_owner == 'aws-samples'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2
- name: Format
run: cargo fmt --all -- --check --verbose
- name: Build
run: cargo build --verbose
- name: Clippy
run: cargo clippy --all-features --all-targets -- -D warnings
- name: Run tests
run: cargo test --verbose