Skip to content

Commit

Permalink
Merge pull request #410 from Nicolasvb23/add_github_actions_with_newe…
Browse files Browse the repository at this point in the history
…r_ruby_versions

Add GitHub actions with newer ruby versions
  • Loading branch information
bobbrodie authored Apr 1, 2024
2 parents d5c0ef3 + fa90f53 commit 3e133ad
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 10 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Ruby

on: [push]

jobs:
test:
name: CI-tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- '3.1'
- '3.0'
- '2.7'
- '2.6'
- '2.5'
- '2.4'
steps:
- uses: actions/checkout@v3

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

- name: Run tests
run: |
bundle exec rake jira:generate_public_cert
bundle exec rake spec
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# JIRA API Gem

[![Code Climate](https://codeclimate.com/github/sumoheavy/jira-ruby.svg)](https://codeclimate.com/github/sumoheavy/jira-ruby)
[![Build Status](https://travis-ci.org/sumoheavy/jira-ruby.svg?branch=master)](https://travis-ci.org/sumoheavy/jira-ruby)
[![Build Status](https://github.com/sumoheavy/jira-ruby/actions/workflows/CI.yml/badge.svg)](https://github.com/sumoheavy/jira-ruby/actions/workflows/CI.yml)

This gem provides access to the Atlassian JIRA REST API.

Expand Down

0 comments on commit 3e133ad

Please sign in to comment.