Skip to content
Closed
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
13 changes: 13 additions & 0 deletions .github/workflows/plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ permissions:
jobs:
regression:
runs-on: ubuntu-latest
env:
MATRIX_SOLARGRAPH_VERSION: "= 0.58.0"

steps:
- uses: actions/checkout@v3
Expand All @@ -33,6 +35,8 @@ jobs:
run: |
echo 'gem "solargraph-rails"' > .Gemfile
echo 'gem "solargraph-rspec"' >> .Gemfile
echo 'gem "nokogiri"' >> .Gemfile
bundle config set --local force_ruby_platform true
bundle install
bundle update rbs
- name: Configure to use plugins
Expand All @@ -48,6 +52,8 @@ jobs:
run: bundle exec rake spec
rails:
runs-on: ubuntu-latest
env:
MATRIX_SOLARGRAPH_VERSION: "= 0.58.0"

steps:
- uses: actions/checkout@v3
Expand All @@ -63,6 +69,8 @@ jobs:
- name: Install gems
run: |
echo 'gem "solargraph-rails"' > .Gemfile
echo 'gem "nokogiri"' >> .Gemfile
bundle config set --local force_ruby_platform true
bundle install
bundle update rbs
- name: Configure to use plugins
Expand Down Expand Up @@ -92,6 +100,8 @@ jobs:
- name: Install gems
run: |
echo 'gem "solargraph-rspec"' >> .Gemfile
echo 'gem "nokogiri"' >> .Gemfile
bundle config set --local force_ruby_platform true
bundle install
bundle update rbs
- name: Configure to use plugins
Expand Down Expand Up @@ -167,6 +177,9 @@ jobs:
run_solargraph_rails_specs:
# check out solargraph-rails as well as this project, and point the former to use the latter as a local gem
runs-on: ubuntu-latest
env:
MATRIX_SOLARGRAPH_VERSION: "= 0.58.0"

steps:
- uses: actions/checkout@v3
- name: clone solargraph-rails
Expand Down
Loading