Sha256: aaca55dfd551482e021e70b5f5af96fbf5f9433d40b1edc375cb0ec174580051
Contents?: true
Size: 866 Bytes
Versions: 1
Compression:
Stored size: 866 Bytes
Contents
# Download the latest Ruby patch versions, install dependencies, and run tests. name: test on: push: paths-ignore: - '**.md' - '**.txt' jobs: test: environment: staging runs-on: ubuntu-latest strategy: matrix: ruby-version: [2.5, 2.6, 2.7, 3.0] steps: - name: Checkout code uses: actions/checkout@v2 - name: Set up Ruby ${{ matrix.ruby-version }} uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} - name: Install dependencies run: bundle install - name: Run tests env: GOOGLE_MAPS_API_KEY: ${{ secrets.GOOGLE_MAPS_API_KEY }} run: bundle exec rake - name: Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} - name: Rubocop run: bundle ex rubocop
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
google_maps_geocoder-0.7.5 | .github/workflows/test.yml |