# HG changeset patch # User MitchellWeg <mitchell.w@live.nl> # Date 1609860610 -3600 # Node ID 396d76eedd0b82c65058496011acc417b3542db3 # Parent bcdc700229a82064fb265257d2033d6d259d1d8e fix ci diff --git a/.github/workflows/ruby.yml b/.github/workflows/linux.yml rename from .github/workflows/ruby.yml rename to .github/workflows/linux.yml --- a/.github/workflows/ruby.yml +++ b/.github/workflows/linux.yml @@ -5,7 +5,7 @@ # This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake # For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby -name: Ruby +name: Linux on: [push] @@ -18,13 +18,12 @@ jobs: steps: - uses: actions/checkout@v2 - name: Set up Ruby - # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, - # change this to (see https://github.com/ruby/setup-ruby#versioning): - # uses: ruby/setup-ruby@v1 uses: ruby/setup-ruby@473e4d8fe5dd94ee328fdfca9f8c9c7afc9dae5e with: ruby-version: 2.6 - name: Install dependencies - run: bundle install + run: | + gem build monetdb-sql.gemspec + gem install --local monetdb-sql-1.2.gem - name: Run tests run: bundle exec rake