chore(deps): bump zeitwerk from 2.6.6 to 2.6.12 #183
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
# pulled from repo | |
name: "RSpec" | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [main] | |
jobs: | |
rspec: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
working-directory: ${{ matrix.gem_name }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
gem_name: | |
- authcat-account | |
- authcat-identity | |
- authcat-mfa | |
- authcat-password | |
ruby_version: ["2.6", "2.7"] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# If running on a self-hosted runner, check it meets the requirements | |
# listed at https://github.com/ruby/setup-ruby#using-self-hosted-runners | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- name: RSpec run | |
run: bundle exec rspec |