Skip to content

Commit

Permalink
Add TruffleRuby and JRuby nightly tests
Browse files Browse the repository at this point in the history
  • Loading branch information
peterfication committed Jan 9, 2024
1 parent c5be6cd commit 53d6b1e
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 3 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/jruby-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: JRuby Nightly

on: push
# on:
# schedule:
# # Checks daily
# - cron: '0 0 * * *'

jobs:
TestsOnNightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: jruby-head
bundler-cache: true
- run: bundle exec rspec
18 changes: 18 additions & 0 deletions .github/workflows/truffleruby-nightly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: TruffleRuby Nightly

on: push
# on:
# schedule:
# # Checks daily
# - cron: '0 0 * * *'

jobs:
TestsOnNightly:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: truffleruby-head
bundler-cache: true
- run: bundle exec rspec
9 changes: 6 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ gemspec

gem "byebug"
gem "prettier"
gem "pry"
gem "pry-byebug"
gem "rake"
gem "rspec"
gem "rubocop"
gem "rubocop-rake"
gem "rubocop-rspec"
gem "simplecov"
gem "solargraph"

platforms :ruby, :mingw do
gem "pry"
gem "pry-byebug"
gem "solargraph"
end
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
<a href="https://github.com/peterfication/rspec-graphql-integration/actions/workflows/ruby-nightly.yml">
<img alt="CI" src="https://github.com/peterfication/rspec-graphql-integration/actions/workflows/ruby-nightly.yml/badge.svg" \>
</a>
<a href="https://github.com/peterfication/rspec-graphql-integration/actions/workflows/truffleruby-nightly.yml">
<img alt="CI" src="https://github.com/peterfication/rspec-graphql-integration/actions/workflows/truffleruby-nightly.yml/badge.svg" \>
</a>
<a href="https://github.com/peterfication/rspec-graphql-integration/actions/workflows/jruby-nightly.yml">
<img alt="CI" src="https://github.com/peterfication/rspec-graphql-integration/actions/workflows/jruby-nightly.yml/badge.svg" \>
</a>
</p>

<p align="center">
Expand Down

0 comments on commit 53d6b1e

Please sign in to comment.