Skip to content

Commit

Permalink
run test in prism 0.14 and 0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
tompng committed Oct 28, 2023
1 parent b2e6b6c commit 99232f2
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,20 @@ jobs:
bundler-cache: true
- run: bundle install
- run: bundle exec rake test
test-prism:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: 'head'
gemfiles:
- gemfiles/Gemfile-prism-0.14
- gemfiles/Gemfile-prism-0.15
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle install --gemfile ${{ matrix.gemfiles }} --jobs 4 --retry 3
- run: bundle exec --gemfile ${{ matrix.gemfiles }} rake test
6 changes: 6 additions & 0 deletions gemfiles/Gemfile-prism-0.14
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source "https://rubygems.org"
gemspec path: "../"
gem "rake", "~> 13.0"
gem "minitest", "~> 5.0"
gem "simplecov"
gem "prism", "0.14.0"
6 changes: 6 additions & 0 deletions gemfiles/Gemfile-prism-0.15
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
source "https://rubygems.org"
gemspec path: "../"
gem "rake", "~> 13.0"
gem "minitest", "~> 5.0"
gem "simplecov"
gem "prism", "0.15.1"

0 comments on commit 99232f2

Please sign in to comment.