Skip to content

chore(deps): bump rexml from 3.2.5 to 3.2.8 in /packages/ruby #2841

chore(deps): bump rexml from 3.2.5 to 3.2.8 in /packages/ruby

chore(deps): bump rexml from 3.2.5 to 3.2.8 in /packages/ruby #2841

Workflow file for this run

name: ruby
on:
push:
branches:
- main
pull_request:
jobs:
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci --ignore-scripts
- run: make test-metrics-ruby-rails
- run: make test-webhooks-ruby-rails
- name: Cleanup
if: always()
run: docker-compose down
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/ruby
strategy:
matrix:
ruby-version:
# https://endoflife.date/ruby
- 2.7 # EOL: March 31st, 2023
- '3.0' # EOL: March 31st, 2024
- 3.1 # EOL: December 25th, 2025
rack-version:
# This will install the latest v2
- -v '>= 2.2' -v '< 3'
# This will install the latest v3
- -v '>= 2.2' -v '< 4'
name: build (${{ matrix.ruby-version }} w/ Rack ${{ matrix.rack-version }}
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: |
make install
gem install rack ${{ matrix.rack-version }}
bundle update
- name: Run linter
run: make lint
- name: Run tests
run: make test