Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ jobs:
lint:
name: Lint
runs-on: ubuntu-latest
env:
BUNDLE_PATH: /tmp/bundle
strategy:
matrix:
ruby-version: ["3.4", "4.0"]
Expand All @@ -39,9 +41,7 @@ jobs:
ruby-version: ${{ matrix.ruby-version }}

- name: Install dependencies on main repo
run: |
gem install bundler
bundle install
run: bundle install

- name: Install dependencies on packages
run: cd packages/${{ matrix.packages }} && bundle install && cd -
Expand All @@ -53,6 +53,8 @@ jobs:
name: Test
runs-on: ubuntu-latest
needs: [lint]
env:
BUNDLE_PATH: /tmp/bundle
strategy:
matrix:
ruby-version: ["3.4", "4.0"]
Expand All @@ -79,9 +81,7 @@ jobs:
ruby-version: ${{ matrix.ruby-version }}

- name: Install dependencies on main repo
run: |
gem install bundler
bundle install
run: bundle install

- name: Wait for MongoDB
if: ${{ matrix.packages == 'forest_admin_datasource_mongoid' }}
Expand Down
Loading