Skip to content

Commit

Permalink
Add github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kiskoza committed Jan 2, 2024
1 parent 78c6730 commit 62defbb
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 14 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Test
on:
push:
branches: ['*']
pull_request:
branches: ['*']

jobs:
test_ruby_versions:
runs-on: ubuntu-20.04

continue-on-error: ${{ matrix.allow_failures == 'allow failures' || false }}

env:
BUNDLE_GEMFILE: "${{ matrix.gemfile }}" ### allows adding gemfile: to the matrix, bundler will automatically pick this up

strategy:
fail-fast: false
matrix:
include:
- ruby: 1.9
- ruby: "2.0"
- ruby: 2.1
- ruby: 2.2
- ruby: 2.3
- ruby: 2.4
- ruby: 2.5
- ruby: 2.6
- ruby: 2.7
- ruby: "3.0" ### must be quoted otherwise will be treated as "3" which resolves to latest 3.x version
- ruby: 3.1
- ruby: 3.2
- ruby: 3.3
- ruby: head
allow_failures: 'allow failures'

- ruby: jruby-9.3
- ruby: jruby-9.4
- ruby: jruby-head
allow_failures: 'allow failures'
steps:
- uses: actions/checkout@v4

- name: Install ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "${{ matrix.ruby }}"
bundler-cache: true

- name: Run tests
run: |
bundle exec rake
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

12 changes: 12 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# frozen_string_literal: true

require 'rake/testtask'

Rake::TestTask.new do |t|
t.libs << 'test'
t.test_files = FileList['test/**/*_test.rb']
t.verbose = false
t.warning = true
end

task default: :test

0 comments on commit 62defbb

Please sign in to comment.