Sha256: a7522b98241ed584b3fdf45325a4697e9d21b0fe994fe673a1b3976a0904b2a7
Contents?: true
Size: 1.24 KB
Versions: 3
Compression:
Stored size: 1.24 KB
Contents
on: push: branches: - main pull_request: name: acceptance tests on emulator jobs: test: runs-on: ubuntu-latest services: emulator: image: gcr.io/cloud-spanner-emulator/emulator:latest ports: - 9010:9010 - 9020:9020 strategy: max-parallel: 4 matrix: ruby: [2.6, 2.7, 3.0] ar: [6.0.5.1, 6.1.6.1, 7.0.2.4, 7.0.3.1] # Exclude combinations that are not supported. exclude: - ruby: 3.0 ar: 6.0.5.1 - ruby: 2.6 ar: 7.0.2.4 - ruby: 2.6 ar: 7.0.3.1 env: AR_VERSION: ${{ matrix.ar }} steps: - uses: actions/checkout@v3 - name: Set up Ruby # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby # (see https://github.com/ruby/setup-ruby#versioning): uses: ruby/setup-ruby@v1 with: bundler-cache: false ruby-version: ${{ matrix.ruby }} - name: Install dependencies run: bundle install - name: Run acceptance tests on emulator run: bundle exec rake acceptance env: SPANNER_EMULATOR_HOST: localhost:9010 SPANNER_TEST_PROJECT: test-project SPANNER_TEST_INSTANCE: test-instance
Version data entries
3 entries across 3 versions & 1 rubygems