Skip to content

Commit

Permalink
Switch form Travis CI to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
janfri committed Oct 9, 2023
1 parent 2ce1d7a commit d84ea00
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 11 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- '3.0'
- '3.1'
- '3.2'
- ruby-head
- jruby-head
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install Dependencies
run: |
bundle install
- name: Prepare .regtestrc
run: |
echo "require 'regtest/git'; require 'regtest/colors'" > .regtestrc
- name: Run Tests
run: |
rake
11 changes: 0 additions & 11 deletions .travis.yml

This file was deleted.

0 comments on commit d84ea00

Please sign in to comment.