summaryrefslogtreecommitdiff
path: root/.github/workflows/ubuntu-lint.yml
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2020-03-06 11:15:45 +0000
committerBundlerbot <bot@bundler.io>2020-03-06 11:15:45 +0000
commit140b5de76f2e23fc44333d55efb689ad27a81828 (patch)
treec916ffc801a50a5d2126c313ea588118d64f87d3 /.github/workflows/ubuntu-lint.yml
parentc645636cc8e76a53772e3ab15693ed716132159a (diff)
parentf07db0495e95f7f1f4e090d1f77636b702926607 (diff)
downloadbundler-140b5de76f2e23fc44333d55efb689ad27a81828.tar.gz
Merge #7660
7660: Try to migrate GitHub Actions from Travis CI r=hsbt a=hsbt Fixes #7587 Co-authored-by: Hiroshi SHIBATA <hsbt@ruby-lang.org> Co-authored-by: David Rodríguez <deivid.rodriguez@riseup.net>
Diffstat (limited to '.github/workflows/ubuntu-lint.yml')
-rw-r--r--.github/workflows/ubuntu-lint.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/ubuntu-lint.yml b/.github/workflows/ubuntu-lint.yml
new file mode 100644
index 0000000000..e2ee63d362
--- /dev/null
+++ b/.github/workflows/ubuntu-lint.yml
@@ -0,0 +1,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