.github/workflows/ruby.yml in xe_client-1.1.0 vs .github/workflows/ruby.yml in xe_client-1.1.1

- old
+ new

@@ -17,11 +17,11 @@ test: runs-on: ubuntu-latest strategy: matrix: - ruby-version: ['2.6', '2.7'] + ruby-version: ['2.7'] steps: - uses: actions/checkout@v2 - name: Set up Ruby # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, @@ -31,7 +31,9 @@ with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Setup spec config run: cp spec/config.yml{.sample,} + - name: Bundle appraisal + run: bundle exec appraisal install - name: Run tests - run: bundle exec rspec + run: bundle exec appraisal rspec