Skip to content

Commit

Permalink
CI: Migrate to Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanahsmith committed Apr 6, 2021
1 parent e9ede53 commit 62e04de
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 13 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
ruby:
- '2.5' # earliest supported
- '3.0' # latest release

steps:
- run: |
sudo apt-get update
sudo apt-get -y install memcached libsasl2-dev
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec ruby test/setup.rb
- run: bundle exec rake
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit 62e04de

Please sign in to comment.