Skip to content

Commit

Permalink
Merge pull request #158 from agrare/add_github_actions
Browse files Browse the repository at this point in the history
Add a simple github-actions workflow
  • Loading branch information
masayag authored Jul 22, 2024
2 parents 2f6381d + 46346bc commit ae1ae32
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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

0 comments on commit ae1ae32

Please sign in to comment.