Skip to content

Commit

Permalink
Merge pull request #57 from olleolleolle/use-gh-actions
Browse files Browse the repository at this point in the history
Use gh actions
  • Loading branch information
janz93 authored Jan 3, 2025
2 parents b92aea3 + 015a7dd commit 1f447c8
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 9 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
ruby-version:
- 3.3
- 3.2
- 3.1
- "3.0"
- jruby-9.4

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

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[![Build Status](https://travis-ci.org/railslove/cmxl.svg?branch=master)](https://travis-ci.org/railslove/cmxl)
[![Gem Version](https://badge.fury.io/rb/cmxl.svg)](http://badge.fury.io/rb/cmxl)

# Cmxl - your friendly ruby MT940 parser
Expand Down

0 comments on commit 1f447c8

Please sign in to comment.