Changeset: 396d76eedd0b for monetdb-ruby URL: https://dev.monetdb.org/hg/monetdb-ruby?cmd=changeset;node=396d76eedd0b Added Files: .github/workflows/linux.yml Removed Files: .github/workflows/ruby.yml Branch: default Log Message:
fix ci diffs (31 lines): 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 _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
