chore: deprecate rusoto in favour of aws-sdk (RUSTSEC-2022-0071) #188
Workflow file for this run
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| name: Test | |
| jobs: | |
| test: | |
| name: Lint and Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| name: Checkout 🛎️ | |
| with: | |
| persist-credentials: false | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/.cargo/registry | |
| ~/.cargo/git | |
| target | |
| key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
| - uses: dtolnay/rust-toolchain@stable | |
| name: Setup Cargo Toolchain 🛎️ | |
| with: | |
| components: rustfmt, clippy | |
| - run: cargo fmt -- --check | |
| name: Check Code Format 🔧 | |
| - run: cargo check --workspace | |
| name: Compile all targets 🚀 | |
| - run: cargo test --workspace | |
| name: Running Tests 🚀 |