houdini/.github/workflows/notice_ruby.yml

39 lines
956 B
YAML
Raw Normal View History

2020-10-25 04:56:04 +00:00
# License: LGPL-3.0-or-later
name: NOTICE-ruby verification
on:
push:
paths:
- Gemfile
- Gemfile.lock
- NOTICE-ruby
pull_request:
paths:
- Gemfile
- Gemfile.lock
- NOTICE-ruby
env:
os: ubuntu-latest
2021-03-01 01:01:11 +00:00
ruby: '2.7.2'
2020-10-25 04:56:04 +00:00
jobs:
notice_ruby:
runs-on: ${{ env.os }}
2020-10-25 04:56:04 +00:00
steps:
- uses: actions/checkout@v2
2020-11-18 17:13:00 +00:00
- uses: ruby/setup-ruby@v1
2020-10-25 04:56:04 +00:00
with:
ruby-version: ${{ env.ruby }}
- uses: actions/cache@v2
2020-10-25 04:56:04 +00:00
name: Use Gem cache
with:
path: vendor/bundle
key: bundle-use-ruby-${{ env.os }}-${{ env.ruby }}-${{ hashFiles('**/Gemfile.lock') }}
2020-10-25 04:56:04 +00:00
restore-keys: |
bundle-use-ruby-${{ env.os }}-${{ env.ruby }}-
2020-10-25 04:56:04 +00:00
- run: |
bundle config deployment true
bundle config path vendor/bundle
bundle install --jobs 4
- name: run notice:ruby:verify
run: |
bin/rails notice:ruby:verify