Sha256: db45933762e670e5f798c03d83068cc0c3f0c5951f1575fdb679c6053b5c7e32
Contents?: true
Size: 834 Bytes
Versions: 4
Compression:
Stored size: 834 Bytes
Contents
name: coverage on: push: branches: [ main ] pull_request: branches: [ main ] jobs: coverage: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: Checkout submodule shell: bash run: | auth_header="$(git config --local --get http.https://github.com/.extraheader)" git submodule sync --recursive git submodule update --init --force --recursive - name: Set up Ruby 2.7 uses: actions/setup-ruby@v1 with: ruby-version: '2.7' - name: Build and test with Rake run: | gem install bundler bundle install bundle exec rake - name: Coveralls GitHub Action uses: coverallsapp/github-action@v1.1.2 with: github-token: ${{ secrets.GITHUB_TOKEN }}
Version data entries
4 entries across 4 versions & 1 rubygems