templates: fix timeline.json.erb dependency #113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Ruby | |
on: | |
push: | |
branches: ['*'] | |
tags: ['*'] | |
pull_request: | |
branches: [master] | |
jobs: | |
rubocop: | |
name: Rubocop | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
- name: Install dependencies | |
run: | | |
gem install bundler -v 2.4.22 | |
bundler install | |
- name: Check code | |
run: bundle exec rubocop | |
test: | |
needs: rubocop | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true | |
- name: Install dependencies | |
run: | | |
gem install bundler -v 2.4.22 | |
bundler install | |
- name: Run tests | |
run: bundle exec rspec | |
publish: | |
name: Build and Publish to Rubygems | |
needs: test | |
if: contains(github.ref, 'refs/tags/') | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true | |
- name: Install dependencies | |
run: | | |
gem install bundler -v 2.4.22 | |
bundler install | |
- name: Build | |
run: gem build *.gemspec | |
- name: Push on Rubygems | |
run: gem push *.gem | |
env: | |
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_API_KEY}} |