Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,16 @@ jobs:
- "ruby-3.2"
- "ruby-3.3"
- "ruby-3.4"
- "ruby-4.0"
- "jruby"
- "truffleruby"

steps:
- uses: actions/checkout@v2
- name: Cache gems
uses: actions/cache@v2
- name: load ruby
uses: ruby/setup-ruby@v1
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
uses: adambirds/docker-compose-action@v1.5.0
with:
Expand Down
2 changes: 1 addition & 1 deletion spec/support/specs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ EOT
export OPENSSL_CONF=/home/openssl_legacy.cnf


if [[ ${RUBY_VERSION:0:1} = "3" ]]; then
if [[ ${RUBY_VERSION:0:1} = "4" ]]; then
export RUBYOPT='-rbundler/setup -rrbs/test/setup'
export RBS_TEST_RAISE=true
export RBS_TEST_LOGLEVEL=error
Expand Down
Loading