Skip to content

Bump aws-config from 1.8.17 to 1.8.18 #906

Bump aws-config from 1.8.17 to 1.8.18

Bump aws-config from 1.8.17 to 1.8.18 #906

Workflow file for this run

name: lambdas
defaults:
run:
working-directory: lambdas
on:
pull_request:
paths:
- ".github/workflows/**"
- "lambdas/**"
- "Cargo.toml"
- "Cargo.lock"
types:
- opened
- synchronize
- reopened
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
- run: cargo fmt --check
- run: cargo clippy -- -D warnings
- run: cargo check
- run: cargo doc --no-deps
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
- name: Install cargo lambda
run: pip install cargo-lambda
- run: cargo lambda build
- run: cargo test