Sha256: cd80c32b759f80a7d4738329b3542e4dc7041ca7a423ae8a35c65ddce91469cf
Contents?: true
Size: 996 Bytes
Versions: 1
Compression:
Stored size: 996 Bytes
Contents
name: Test on: push env: ImageOS: ubuntu18 NOKOGIRI_USE_SYSTEM_LIBRARIES: true jobs: run-tests: name: Test code runs-on: ubuntu-latest strategy: fail-fast: false matrix: ruby: - 3.0.4 - 2.7.6 - 3.1.2 services: dynamodb: image: amazon/dynamodb-local ports: - 8000/tcp steps: - uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true cache-version: ${{ matrix.ruby }}-0 - name: Run RSpec env: AWS_ACCESS_KEY_ID: asdf AWS_SECRET_ACCESS_KEY: asdf CI: true DYNAMODB_HOST: http://localhost:${{job.services.dynamodb.ports[8000]}}/ run: bundle exec rspec - name: Coveralls uses: coverallsapp/github-action@v1.1.2 continue-on-error: true with: github-token: ${{ secrets.GITHUB_TOKEN }}
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dynamoid_lockable-1.1.0 | .github/workflows/test.yaml |