Skip to content

Commit

Permalink
run rake scripts in github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffisabelle committed Jan 31, 2024
1 parent d6ab8d7 commit 3722cad
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 17 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci-jobs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: ci-workflows

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build-and-run-rake:
runs-on: ubuntu-22.04
strategy:
matrix:
ruby-version: [2.2, 2.3, 2.4, 2.5, 2.6, 2.7]

services:
redis:
image: redis
ports:
- 6379:6379

steps:
- uses: actions/checkout@v2

- name: "setup-ruby"
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # automatically caches and installs gems

- name: "run-rake-scripts"
run: bundle exec rake
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

0 comments on commit 3722cad

Please sign in to comment.