Skip to content

Commit

Permalink
Drop travis ci in favor of github actions
Browse files Browse the repository at this point in the history
Drop EOL ruby versions from the test matrix

Action script based off: https://github.com/actions/starter-workflows/blob/main/ci/ruby.yml
  • Loading branch information
Empact committed May 21, 2024
1 parent e7201dd commit 89b5348
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 18 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test

on:
push:
branches:
- master
pull_request:
branches:
- master

permissions:
contents: read

jobs:
test:

runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2', '3.3', '3.4', 'head']

steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec rake
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

2 changes: 0 additions & 2 deletions README.rdoc
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
ROXML Ruby Object to XML mapping library.

{https://travis-ci.org/Empact/roxml.svg?branch=master}[https://travis-ci.org/Empact/roxml]

For more information visit:

http://rdoc.info/projects/Empact/roxml
Expand Down
2 changes: 0 additions & 2 deletions roxml.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ Gem::Specification.new do |s|
"README.rdoc"
]
s.files = [
".gitmodules",
".rspec",
".travis.yml",
"Gemfile",
"Gemfile.lock",
"History.txt",
Expand Down

0 comments on commit 89b5348

Please sign in to comment.