summaryrefslogtreecommitdiff
path: root/.github/workflows/ubuntu-lint.yml
blob: e2ee63d3626c4aa9a6ae809cfd1ac4a1c573da52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: ubuntu-lint

on:
  pull_request:

  push:
    branches:
      - staging
      - trying

jobs:
  ubuntu_lint:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v1
      - name: Setup ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: 2.6.5
      - name: Install Dependencies
        run: bin/rake spec:deps
      - name: Run Lint
        run: bin/rake rubocop check_rvm_integration man:check
    timeout-minutes: 15