Skip to content

Improve READMEs

Improve READMEs #3

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
spec:
- spec/lambda/firehose_metrics_tag_enrichment_spec.rb
- spec/lambda/firehose_logs_tag_enrichment_spec.rb
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- name: Run tests
run: bundle exec rspec ${{ matrix.spec }} --format documentation