Codebase list ruby-gitlab / run/42e7c1a7-ddf5-492a-9c04-6d662e4242f9/main .github / workflows / ci.yml
run/42e7c1a7-ddf5-492a-9c04-6d662e4242f9/main

Tree @run/42e7c1a7-ddf5-492a-9c04-6d662e4242f9/main (Download .tar.gz)

ci.yml @run/42e7c1a7-ddf5-492a-9c04-6d662e4242f9/mainraw · history · blame

name: CI

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master

jobs:
  build:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby:
          - 2.5
          - 2.6
          - 2.7
    name: Ruby ${{ matrix.ruby }} test
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby ${{ matrix.ruby }}
      uses: actions/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Build and test with Rake
      run: |
        gem install bundler --no-document
        bundle install --jobs 4 --retry 3
        bundle exec rake

  lint:
    runs-on: ubuntu-latest
    name: Rubocop lint
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby 2.5
      uses: actions/setup-ruby@v1
      with:
        ruby-version: 2.5
    - name: Lint with Rubocop
      run: |
        gem install bundler --no-document
        bundle install --jobs 4 --retry 3
        bundle exec rake rubocop