spec/fixtures/migrate/expected_github_actions.yml in gemika-0.5.0 vs spec/fixtures/migrate/expected_github_actions.yml in gemika-0.6.0
- old
+ new
@@ -52,11 +52,11 @@
run: |
sudo apt-get install -y mysql-client libmariadbclient-dev
mysql -e 'create database IF NOT EXISTS test;' -u root --password=password -P 3306 -h 127.0.0.1
- name: Bundle
run: |
- gem install bundler:1.17.3
+ gem install bundler:2.2.15
bundle install --no-deployment
- name: Run tests
run: bundle exec rspec
test_pg:
runs-on: ubuntu-20.04
@@ -82,11 +82,11 @@
- ruby: 2.2.4
gemfile: Gemfile.5.2.pg
- ruby: 2.3.1
gemfile: Gemfile.5.2.pg
- ruby: 2.6.4
- gemfile: Gemfile.6.0.pg
+ gemfile: Gemfile.6.1.pg
env:
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
steps:
- uses: actions/checkout@v2
- name: Install ruby
@@ -97,11 +97,11 @@
run: |
sudo apt-get install -y postgresql-client
PGPASSWORD=postgres psql -c 'create database test;' -U postgres -p 5432 -h localhost
- name: Bundle
run: |
- gem install bundler:1.17.3
+ gem install bundler:2.2.15
bundle install --no-deployment
- name: Run tests
run: bundle exec rspec
test_sqlite:
runs-on: ubuntu-20.04
@@ -121,9 +121,9 @@
uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
- name: Bundle
run: |
- gem install bundler:1.17.3
+ gem install bundler:2.2.15
bundle install --no-deployment
- name: Run tests
run: bundle exec rspec