Sha256: 6eb912e31e024734cabea4d8a3434db2ef547ac0ab0a4ccba8c71642e6c74792
Contents?: true
Size: 956 Bytes
Versions: 1
Compression:
Stored size: 956 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 name: Ruby ${{ matrix.ruby-version }} 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 }} bundler-cache: true # 'bundle install' and cache - name: Start MongoDB uses: supercharge/mongodb-github-action@1.7.0 with: mongodb-version: '4.4' - name: Run tests run: bundle exec rake - name: Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.GITHUB_TOKEN }} - name: Rubocop run: bundle exec rubocop
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hit_counter-0.1.4 | .github/workflows/test.yml |