Skip to content

Bump pry from 0.14.2 to 0.15.0 #226

Bump pry from 0.14.2 to 0.15.0

Bump pry from 0.14.2 to 0.15.0 #226

Workflow file for this run

name: Ruby
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # 'bundle install' and cache gems
- name: Run tests
# Exclude acceptance specs as github action fails due to:
# It is a security vulnerability to allow your home directory to be world-writable, and bundler cannot continue.
run: bundle exec rspec --exclude-pattern "spec/acceptance/**/*_spec.rb"
- name: Run linter
run: make lint
- name: Report coverage
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: coverage/coverage.xml