Add in ability to dynamically load in deny_listed domains #150
Workflow file for this run
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: CI | |
on: [push, pull_request_target] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
gemfile: [ activemodel6, activemodel7 ] | |
ruby: [3.1, 3.2, 3.3] | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
- run: bundle exec rake |