s3v4 0.3.4

Library for signing requests and URLs using AWS' S3 version 4 protocol.
Documentation
name: Rust

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build-ubuntu:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        toolchain:
          - stable
          - beta
          - nightly
    steps:
    - uses: actions/checkout@v3
    - run: rustup update ${{matrix.toolchain}} && rustup default ${{matrix.toolchain}}
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose
      
  build-windows:
    runs-on: windows-latest
    strategy:
      matrix:
        toolchain:
          - stable
          - beta
          - nightly
    steps:
    - uses: actions/checkout@v3
    - run: rustup update ${{matrix.toolchain}} && rustup default ${{matrix.toolchain}}
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --
      
  build-macos:
    runs-on: macos-latest
    strategy:
      matrix:
        toolchain:
          - stable
          - beta
          - nightly
    steps:
    - uses: actions/checkout@v3
    - run: rustup update ${{matrix.toolchain}} && rustup default ${{matrix.toolchain}}
    - name: Build
      run: cargo build --verbose
    - name: Run tests
      run: cargo test --verbose