mirror of
https://github.com/raimon49/requirements.txt.vim.git
synced 2026-02-12 10:01:40 +08:00
Add YAML file for use GitHub Actions
This commit is contained in:
23
.github/workflows/ruby.yml
vendored
Normal file
23
.github/workflows/ruby.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
name: Ruby
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ master ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ master ]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Ruby
|
||||||
|
uses: ruby/setup-ruby@v1
|
||||||
|
with:
|
||||||
|
ruby-version: 2.6
|
||||||
|
- name: Install dependencies
|
||||||
|
run: bundle install
|
||||||
|
- name: Run tests
|
||||||
|
run: bundle exec rake ci
|
||||||
Reference in New Issue
Block a user