Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
LeipeLeon committed Dec 13, 2023
1 parent 96a87e6 commit b762be8
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ jobs:
gemfile: active_support_71
env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.gemfile }}.gemfile
BUNDLE_PATH: "vendor/bundle"

steps:
- uses: actions/checkout@v4
Expand All @@ -46,12 +47,9 @@ jobs:
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Configure bundler
run: |
bundle config path vendor/bundle
- name: Create bundler lockfile
run: |
bundle lock
# - name: Create bundler lockfile
# run: |
# bundle lock
- uses: actions/cache@v3
with:
# NOTE: Bundler expands the path relative to the gemfile, not the
Expand All @@ -61,9 +59,9 @@ jobs:
restore-keys: |
bundled-gems-${{ runner.os }}-ruby-${{ matrix.ruby }}-${{ matrix.gemfile }}-
bundled-gems-${{ runner.os }}-ruby-${{ matrix.ruby }}-
- name: Install gems
run: |
bundle install --jobs 4
# - name: Install gems
# run: |
# bundle install --jobs 4
- name: Run tests
run: bundle exec rspec

Expand Down

0 comments on commit b762be8

Please sign in to comment.