Skip to content

Commit

Permalink
Merge pull request metaskills#101 from metaskills/fixci
Browse files Browse the repository at this point in the history
Fix CI
  • Loading branch information
metaskills committed Nov 28, 2019
2 parents 8a23ed8 + a67f636 commit c6a524e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,18 @@ jobs:
- name: Setup System
run: |
sudo apt-get install libsqlite3-dev
echo "::set-env name=MTSR_RAILS_VERSION::${{ matrix.rails }}"
- name: Setup Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Bundle
env:
MTSR_RAILS_VERSION: ${{ matrix.rails }}
run: |
export BUNDLE_GEMFILE="${GITHUB_WORKSPACE}/gemfiles/${MTSR_RAILS_VERSION}.gemfile"
gem uninstall -aIx bundler
gem install bundler -v 1.17.3
bundle install --jobs 4 --retry 3
- name: Test
run: bundle exec rake
run: |
export BUNDLE_GEMFILE="${GITHUB_WORKSPACE}/gemfiles/${MTSR_RAILS_VERSION}.gemfile"
bundle exec rake

0 comments on commit c6a524e

Please sign in to comment.