Merge pull request #1022 from evemonk/dependabot/bundler/public_suffi… #1144
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: RSpec | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: "0 21 * * 6" | |
permissions: | |
contents: read | |
jobs: | |
rspec: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["3.1", "3.2", "3.3", "head"] | |
activesupport: ["7.1", "7.2", "main"] | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activesupport_${{ matrix.activesupport }}.gemfile | |
name: Ruby ${{ matrix.ruby }} and ActiveSupport ${{ matrix.activesupport }} | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@17d0e2bd7d51742c71671bd19fa12bdc9d40a3d6 # v2.8.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- run: rm Gemfile.lock | |
- run: rm .ruby-version | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@ff740bc00a01b3a50fffc55a1071b1060eeae9dc # v1.180.0 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
rubygems: latest | |
bundler: latest | |
bundler-cache: true | |
- run: bundle exec rspec | |
- run: bundle exec standardrb |