Skip to content

Commit

Permalink
Setup GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
byroot committed Apr 4, 2022
1 parent 50961ad commit 6e4c5de
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 30 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
name: Test
on: [push]

jobs:
ruby:
name: Ruby ${{ matrix.ruby }}
timeout-minutes: 5
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
ruby:
- "ruby-head"
- "3.1"
- "3.0"
- "2.7"
- "2.6"
- "2.5"
- "2.4"
- "2.3"
- "2.2"
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Test
run: bundle exec rake
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

0 comments on commit 6e4c5de

Please sign in to comment.