diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 01379cdda..8f8c1a51f 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -13,8 +13,8 @@ jobs: matrix: container_tag: - master-nightly-bionic - - 2.6.5-bionic - - 2.7.0-bionic + - 2.6-bionic + - 2.7-bionic job: - test - stdlib_test @@ -23,6 +23,10 @@ jobs: image: rubylang/ruby:${{ matrix.container_tag }} steps: - uses: actions/checkout@v1 + - name: Install dependencies + run: | + apt-get update + apt-get install -y libdb-dev - name: Install run: | ruby -v @@ -31,4 +35,4 @@ jobs: - name: Run test run: | bundle exec rake ${{ matrix.job }} - if: "!(matrix.job == 'stdlib_test' && contains(matrix.container_tag, '2.6.5'))" + if: "!(matrix.job == 'stdlib_test' && contains(matrix.container_tag, '2.6'))" diff --git a/Gemfile b/Gemfile index 70c82dbf2..7bd0776ff 100644 --- a/Gemfile +++ b/Gemfile @@ -15,6 +15,7 @@ gem "json" gem "json-schema" gem 'stackprof' gem "goodcheck" +gem "dbm" # Test gems gem "rbs-amber", path: "test/assets/test-gem"