Skip to content

chore(deps): pin dependencies #81

chore(deps): pin dependencies

chore(deps): pin dependencies #81

Workflow file for this run

---
name: test
on:
push:
pull_request:
workflow_dispatch:
jobs:
rspec:
name: "ruby-${{ matrix.ruby }}"
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
ruby:
- "3.4"
- "3.3"
- "3.2"
- "3.1"
- "3.0"
- "2.7"
env:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
BUNDLE_WITHOUT: development
steps:
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rspec --color --format RSpec::Github::Formatter --format documentation
- uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
rubocop:
name: rubocop
runs-on: ubuntu-24.04
env:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
BUNDLE_WITHOUT: test
steps:
- uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # master
- uses: ruby/setup-ruby@v1
with:
ruby-version: "4.0.2"
bundler-cache: true
- run: bundle exec rubocop --format github --format progress --parallel --color