Skip to content

Commit 95172db

Browse files
authored
Merge pull request #916 from eregon/cleanup-gh-actions
Cleanup GitHub Actions workflow
2 parents 1a0cf49 + 748c6c6 commit 95172db

File tree

2 files changed

+6
-13
lines changed

2 files changed

+6
-13
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, jruby, jruby-head]
12-
experimental: [false]
1312

1413
env:
1514
JAVA_OPTS: '-Xmx1024m'
@@ -20,13 +19,10 @@ jobs:
2019
steps:
2120
- name: Clone Repo
2221
uses: actions/checkout@v2
23-
- name: Setup system Ruby ${{ matrix.ruby }}
22+
- name: Setup Ruby ${{ matrix.ruby }}
2423
uses: ruby/setup-ruby@v1
2524
with:
2625
ruby-version: ${{ matrix.ruby }}
27-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
26+
bundler-cache: true
2827
- name: Run tests
29-
run: |
30-
gem install bundler --version 1.17.3
31-
echo JAVA_OPTS: $JAVA_OPTS
32-
bundle exec rake ci
28+
run: bundle exec rake ci

.github/workflows/experimental.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,10 @@ jobs:
2121
steps:
2222
- name: Clone Repo
2323
uses: actions/checkout@v2
24-
- name: Setup system Ruby ${{ matrix.ruby }}
24+
- name: Setup Ruby ${{ matrix.ruby }}
2525
uses: ruby/setup-ruby@v1
2626
with:
2727
ruby-version: ${{ matrix.ruby }}
28-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
28+
bundler-cache: true
2929
- name: Run tests
30-
run: |
31-
gem install bundler --version 1.17.3
32-
echo JAVA_OPTS: $JAVA_OPTS
33-
bundle exec rake ci
30+
run: bundle exec rake ci

0 commit comments

Comments
 (0)