Skip to content

Update rust dependencies (including AWS SDK) #1071

Update rust dependencies (including AWS SDK)

Update rust dependencies (including AWS SDK) #1071

Workflow file for this run

name: Rust
on:
pull_request:
paths-ignore:
- "**.md"
- ".github/dependabot.yml"
branches: [develop]
jobs:
build:
strategy:
matrix:
make_target: ["check-licenses", "build", "integ"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
.cargo
target
# you can edit the .github/cache_bust file if you need to clear the cache
key: ${{ hashFiles('.github/cache_bust') }}-${{ runner.os }}-${{ matrix.make_target }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ hashFiles('.github/cache_bust') }}-${{ runner.os }}-${{ matrix.make_target }}-
- run: rustup default 1.68.2
- run: rustup component add rustfmt
- run: rustup component add clippy
- run: make ${{ matrix.make_target }}