Sha256: 9ed949524fd0ca4ba7eb816068d34fa78b8d5c4caee445d460ba129834e44e12
Contents?: true
Size: 692 Bytes
Versions: 1
Compression:
Stored size: 692 Bytes
Contents
name: CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: test: runs-on: ubuntu-latest services: redis: image: redis:alpine ports: ["6379:6379"] steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: '2.7' bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Lint with RuboCop run: bundle exec rubocop --parallel - name: Run Danger env: DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: bundle exec danger - name: Run tests run: bundle exec rake spec
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pushmi_pullyu-2.1.4 | .github/workflows/ruby.yml |