.github/workflows/test.yml in pact_broker-2.70.0 vs .github/workflows/test.yml in pact_broker-2.71.0
- old
+ new
@@ -1,10 +1,22 @@
name: Test
on: push
jobs:
+ sqlite:
+ runs-on: "ubuntu-latest"
+ strategy:
+ matrix:
+ ruby_version: ["2.7"]
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-ruby@v1
+ with:
+ ruby-version: ${{ matrix.ruby_version }}
+ - run: "bundle install"
+ - run: "bundle exec rake"
postgres:
runs-on: "ubuntu-latest"
strategy:
matrix:
ruby_version: ["2.5", "2.7"]
@@ -34,10 +46,10 @@
INSTALL_PG: "true"
mysql:
runs-on: "ubuntu-latest"
strategy:
matrix:
- ruby_version: ["2.5", "2.7"]
+ ruby_version: ["2.7"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}