Skip to content

Bump aws-partitions from 1.980.0 to 1.984.0 (#1593) #4048

Bump aws-partitions from 1.980.0 to 1.984.0 (#1593)

Bump aws-partitions from 1.980.0 to 1.984.0 (#1593) #4048

Workflow file for this run

name: Unit_test
on: [push]
jobs:
test:
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: Install dependencies
run: |
gem install bundler
bundle install --jobs 4 --retry 3
- name: Run tests
run: rspec ./units/test_helpers/test_image_helper_spec.rb --default-path ./units
- name: Check source files using `rubocop`
run: rubocop