Skip to content

Bump aws-sdk-core from 3.209.1 to 3.211.0 (#1464) #3638

Bump aws-sdk-core from 3.209.1 to 3.211.0 (#1464)

Bump aws-sdk-core from 3.209.1 to 3.211.0 (#1464) #3638

Workflow file for this run

name: Ruby
on: [push]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.allow-failures }}
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3']
allow-failures: [false]
include:
- ruby: head
allow-failures: true
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Initialize configuration
env:
S3_KEY: ${{ secrets.S3_KEY }}
S3_PRIVATE_KEY: ${{ secrets.S3_PRIVATE_KEY }}
run: |
mkdir -pv ~/.s3
echo $S3_KEY > ~/.s3/key
echo $S3_PRIVATE_KEY > ~/.s3/private_key
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
- name: Check `simplecov` line coverage
run: cat coverage/.last_run.json | jq '.result.line' | grep -q '100'
- name: Check `simplecov` branch coverage
run: cat coverage/.last_run.json | jq '.result.branch' | grep -q '100'
- name: Check source files using `rubocop`
run: rubocop
- name: Check that code 100% documented
run: yardoc . | grep -q '100.00% documented'