Skip to content

Commit 1f447c8

Browse files
authored
Merge pull request #57 from olleolleolle/use-gh-actions
Use gh actions
2 parents b92aea3 + 015a7dd commit 1f447c8

File tree

3 files changed

+30
-9
lines changed

3 files changed

+30
-9
lines changed

.github/workflows/ci.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
ruby-version:
16+
- 3.3
17+
- 3.2
18+
- 3.1
19+
- "3.0"
20+
- jruby-9.4
21+
22+
steps:
23+
- uses: actions/checkout@v4
24+
- name: Set up Ruby ${{ matrix.ruby-version }}
25+
uses: ruby/setup-ruby@v1
26+
with:
27+
ruby-version: ${{ matrix.ruby-version }}
28+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
29+
- name: Run tests
30+
run: bundle exec rake

.travis.yml

-8
This file was deleted.

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
[![Build Status](https://travis-ci.org/railslove/cmxl.svg?branch=master)](https://travis-ci.org/railslove/cmxl)
21
[![Gem Version](https://badge.fury.io/rb/cmxl.svg)](http://badge.fury.io/rb/cmxl)
32

43
# Cmxl - your friendly ruby MT940 parser

0 commit comments

Comments
 (0)