Skip to content

Commit

Permalink
Move CI to GH Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
inukshuk committed Jan 10, 2024
1 parent a3cbdcf commit 465590d
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 38 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
ci:
name: ${{ matrix.ruby-version }} ${{ matrix.friendlyName }}
runs-on: ${{ matrix.os }}

strategy:
matrix:
ruby-version:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
- "3.3"
os:
- ubuntu-latest
include:
- os: ubuntu-latest
friendlyName: Linux
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Ruby and install bundle
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
38 changes: 0 additions & 38 deletions .travis.yml

This file was deleted.

0 comments on commit 465590d

Please sign in to comment.