Skip to content

Commit 2dee86a

Browse files
committed
Keep CI using bundle exec
The binstup is pointing to a gemfile that doesn't exist when run via GitHub Actions.
1 parent df6a3c1 commit 2dee86a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ruby.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
ruby-version: ${{ matrix.ruby }}
3232
bundler-cache: true
3333
- name: Run tests
34-
run: bin/rake
34+
run: bundle exec rake
3535
memcheck:
3636
name: Memcheck
3737
runs-on: ubuntu-latest
@@ -44,7 +44,7 @@ jobs:
4444
- name: Install Valgrind
4545
run: sudo apt-get install valgrind
4646
- name: Run tests
47-
run: bin/rake test:valgrind
47+
run: bundle exec rake test:valgrind
4848
lint:
4949
runs-on: ubuntu-latest
5050
name: Lint
@@ -55,7 +55,7 @@ jobs:
5555
with:
5656
bundler-cache: true
5757
- name: Run style checks
58-
run: bin/rubocop
58+
run: bundle exec rubocop
5959
buildall:
6060
if: ${{ always() }}
6161
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)