Bump aws-sdk-s3 from 1.91.0 to 1.92.0 (#24) #58
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
| name: Default Features | |
| on: | |
| push: | |
| branches: [master, ci_*] | |
| paths-ignore: | |
| - "**.md" | |
| - "**.yaml" | |
| pull_request: | |
| branches: [master] | |
| paths-ignore: | |
| - "**.md" | |
| - "**.yaml" | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| # this one speeds up builds, they say | |
| CARGO_INCREMENTAL: 0 | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| with: | |
| toolchain: stable | |
| components: rustfmt | |
| # make cargo format to fail first | |
| # before bringing other things, and spending time | |
| # compiling | |
| - name: Cargo Format Check | |
| run: cargo fmt --all --check -- | |
| - name: Update Packages (apt-cache cache) | |
| run: sudo apt-get update | |
| - name: Install Required Libraries (using apt-get) | |
| run: sudo apt-get install -y protobuf-compiler | |
| # we use cache if format is correct | |
| - uses: Swatinem/rust-cache@v2 | |
| with: | |
| cache-on-failure: true | |
| - name: Cargo Run Tests | |
| run: cargo test -- --nocapture --quiet |