diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b3cac1e9..5b0dadfc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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