Skip to content

Commit

Permalink
Merge pull request #7 from neopoly/6-migrate-from-travis-to-github-ac…
Browse files Browse the repository at this point in the history
…tions

Migrate to GitHub Actions
  • Loading branch information
jnbt authored Apr 17, 2024
2 parents c31d2ef + 98ca417 commit fa8ba95
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 21 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version:
- "jruby-9.1.17.0"
- "jruby-9.2.21.0"
- "jruby-9.3.14.0"
- "jruby-9.4.6.0"
env:
JRUBY_OPTS: "--dev -J-Xmx1024M"
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- run: bundle exec rake
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
[github]: https://github.com/neopoly/rubyfox-sfsobject
[doc]: http://rubydoc.info/github/neopoly/rubyfox-sfsobject/master/file/README.md
[gem]: https://rubygems.org/gems/rubyfox-sfsobject
[travis]: https://travis-ci.org/neopoly/rubyfox-sfsobject
[inchpages]: https://inch-ci.org/github/neopoly/rubyfox-sfsobject

# Rubyfox::SFSObject

[![Travis](https://img.shields.io/travis/neopoly/rubyfox-sfsobject.svg?branch=master)][travis]
[![Build Status](https://github.com/neopoly/rubyfox-sfsobject/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/neopoly/rubyfox-sfsobject/actions?query=branch%3Amaster)
[![Gem Version](https://img.shields.io/gem/v/rubyfox-sfsobject.svg)][gem]
[![Inline docs](https://inch-ci.org/github/neopoly/rubyfox-sfsobject.svg?branch=master&style=flat)][inchpages]

Expand Down

0 comments on commit fa8ba95

Please sign in to comment.