mirror of
https://github.com/raimon49/requirements.txt.vim.git
synced 2026-01-31 12:25:22 +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