Skip to content

Add a simple github-actions workflow #1

Add a simple github-actions workflow

Add a simple github-actions workflow #1

Workflow file for this run

name: CI
on:
push:
pull_request:
workflow_dispatch:
schedule:
- cron: 0 0 * * 0
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- '2.7'
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
timeout-minutes: 30
- name: Run tests
run: bundle exec rake