Skip to content

Update aws-sdk-ec2 requirement from >= 1.65, < 1.432 to >= 1.65, < 1.471 #315

Update aws-sdk-ec2 requirement from >= 1.65, < 1.432 to >= 1.65, < 1.471

Update aws-sdk-ec2 requirement from >= 1.65, < 1.432 to >= 1.65, < 1.471 #315

Workflow file for this run

name: Ruby
on:
push:
pull_request:
schedule:
- cron: '0 0 * * SAT'
jobs:
test:
runs-on: ${{matrix.os}}-latest
strategy:
matrix:
os:
- ubuntu
- macos
ruby:
- 3.0
- 3.1
- 3.2
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{matrix.ruby}}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec spec --tag '~integration'