Mercurial > hg > monetdb-ruby
changeset 27:396d76eedd0b
fix ci
author | MitchellWeg <mitchell.w@live.nl> |
---|---|
date | Tue, 05 Jan 2021 16:30:10 +0100 (2021-01-05) |
parents | bcdc700229a8 |
children | c2070750ad20 |
files | .github/workflows/linux.yml .github/workflows/ruby.yml |
diffstat | 2 files changed, 29 insertions(+), 30 deletions(-) [+] |
line wrap: on
line diff
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