Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add hyrax version to the test matrix #857

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ jobs:
strategy:
matrix:
ruby: ['2.6', '2.7'] # TODO add 3.0 compat , '3.0']
name: Run specs with ruby ${{ matrix.ruby }}
hyrax: ['2.9.6', '3.6.0']
name: Run specs with ruby ${{ matrix.ruby }} and hyrax ${{ matrix.hyrax }}
steps:
- uses: actions/checkout@v2

Expand All @@ -31,6 +32,11 @@ jobs:
- name: Setup sqlite3
run: sudo apt-get install libsqlite3-dev

- name: Set Hyrax Version
run: |
bundle remove hyrax
bundle add hyrax -v ${{ matrix.hyrax }}

- name: Install dependencies
run: |
bundle config path vendor/bundle
Expand Down
Loading