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
11 changes: 8 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Test this action
on:
push:
branches-ignore:
- v1
tags-ignore:
- '*'
paths-ignore:
- README.md
jobs:
Expand All @@ -27,14 +31,15 @@ jobs:
- run: ruby --version
- run: ridk version
if: matrix.os == 'windows-latest'
- run: ruby -ropenssl -e 'puts OpenSSL::OPENSSL_LIBRARY_VERSION'
- name: OpenSSL version
run: ruby -ropenssl -e 'puts OpenSSL::OPENSSL_LIBRARY_VERSION'
- name: OpenSSL test
run: ruby -ropen-uri -e 'puts open(%{https://rubygems.org/}) { |f| f.read(1024) }'
- name: C extension test
run: gem install json --no-document
- name: Check that Bundler is installed
- name: Bundler version
run: bundle --version
- name: Check that Bundler works
- name: Bundler test
run: bundle install

lint:
Expand Down
Loading