Sha256: 57d4bd3ebe8331a032997e7e51237dc0dbd01629dc4904c1e277aa866c59c14c

Contents?: true

Size: 749 Bytes

Versions: 3

Compression:

Stored size: 749 Bytes

Contents

name: Pull Requests
on:
  push:
    branches:
      - '*'
      - '!master'
jobs:
  testing:
    runs-on: ubuntu-20.04
    strategy:
      matrix:
        ruby:
          - "3.0"
          - "2.7"
          - "2.6"
        include:
          - ruby: "3.0"
            coverage: "true"
    name: Test with ruby ${{ matrix.ruby }}
    steps:
      - uses: actions/checkout@v2
      - uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
          bundler-cache: true
      - name: Run Rubocop
        run: bundle exec rubocop lib
      - name: Run Test
        run: bundle exec rspec
      - name: Coveralls
        uses: coverallsapp/github-action@master
        with:
          github-token: ${{ secrets.GITHUB_TOKEN }}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mutils-1.2.5 .github/workflows/test.yml
mutils-1.2.2 .github/workflows/pr.yml
mutils-1.2.1 .github/workflows/pr.yml