Skip to content

Commit

Permalink
Switch from Travis to GH actions (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
julik authored Dec 28, 2024
1 parent b9e4820 commit fbb5c33
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 17 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
- push

env:
BUNDLE_PATH: vendor/bundle

jobs:
test:
name: Tests
runs-on: ubuntu-22.04
strategy:
matrix:
ruby:
- '2.6'
- '3.2'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: "Tests"
run: bundle exec rake
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

0 comments on commit fbb5c33

Please sign in to comment.