Skip to content

feat: Allow replacing default algorithms with AWS KMS versions #29

feat: Allow replacing default algorithms with AWS KMS versions

feat: Allow replacing default algorithms with AWS KMS versions #29

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
jobs:
lint:
name: RuboCop
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ruby
bundler-cache: true
- name: Run RuboCop
run: bundle exec rubocop
build:
runs-on: ubuntu-latest
name: Ruby ${{ matrix.ruby }}
strategy:
matrix:
ruby:
- "3.0"
- "3.1"
- "3.2"
- "3.3"
steps:
- name: Start LocalStack
uses: LocalStack/setup-localstack@v0.2.3
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run rspec
run: bundle exec rspec