Skip to content

Commit

Permalink
Use rbenv
Browse files Browse the repository at this point in the history
  • Loading branch information
onevcat committed Nov 9, 2024
1 parent ffaef5a commit 8bfe599
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Gems
run: rbenv init & bundle install
run: |
eval "$(rbenv init -)"
bundle install
- name: Build framework
env:
DESTINATION: platform=${{ matrix.destination }}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Gems
run: rbenv init & bundle install
run: |
eval "$(rbenv init -)"
bundle install
- name: Run tests
env:
DESTINATION: platform=${{ matrix.destination }}
Expand Down

0 comments on commit 8bfe599

Please sign in to comment.