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 5aba3d0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: build

defaults:
run:
shell: bash -leo pipefail {0}

on: [push, pull_request]

concurrency:
Expand All @@ -26,7 +30,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Gems
run: rbenv init & bundle install
run: bundle install
- name: Build framework
env:
DESTINATION: platform=${{ matrix.destination }}
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: test

defaults:
run:
shell: bash -leo pipefail {0}

on: [push, pull_request]

concurrency:
Expand All @@ -25,7 +29,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Gems
run: rbenv init & bundle install
run: bundle install
- name: Run tests
env:
DESTINATION: platform=${{ matrix.destination }}
Expand Down

0 comments on commit 5aba3d0

Please sign in to comment.