diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ubuntu-lint.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/.github/workflows/ubuntu-lint.yml b/.github/workflows/ubuntu-lint.yml new file mode 100644 index 0000000000..360ef91e85 --- /dev/null +++ b/.github/workflows/ubuntu-lint.yml @@ -0,0 +1,25 @@ +name: ubuntu-lint + +on: + pull_request: + + push: + branches: + - staging + - trying + +jobs: + ubuntu_lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - run: git submodule update -i + - 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 |