Skip to content

Ruby Tests

Ruby Tests #106

Workflow file for this run

---
# runs 'bundle install' and caches installed gems automatically
name: Ruby Tests
on:
push:
branches: [master]
pull_request:
branches: ['**']
create:
branches: [master]
tags: ['**']
schedule:
- cron: 0 4 * * 1
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
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
bundler-cache: true
- name: Test build
run: bundle exec jekyll build