mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-04-02 14:13:56 -04:00
21 lines
474 B
YAML
21 lines
474 B
YAML
name: CI
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
contributors:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install ruby version specified in .ruby-version
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
bundler-cache: true
|
|
- name: Install gem bundle
|
|
run: |
|
|
gem install bundler
|
|
bundle install
|
|
- name: Check contributors
|
|
run: |
|
|
bundle exec script/check_contributors_md.rb
|