Skip to content

Commit b14128d

Browse files
authored
Merge pull request #103 from kbrock/workflow
convert travis to github actions
2 parents bc28d09 + bccc84d commit b14128d

2 files changed

Lines changed: 28 additions & 25 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
workflow_dispatch:
7+
schedule:
8+
- cron: '0 0 * * 0'
9+
10+
jobs:
11+
ci:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
ruby-version:
17+
- '3.1'
18+
- '3.3'
19+
- '3.4'
20+
steps:
21+
- uses: actions/checkout@v5
22+
- name: Set up Ruby
23+
uses: ruby/setup-ruby@v1
24+
with:
25+
ruby-version: ${{ matrix.ruby-version }}
26+
bundler-cache: true
27+
- name: Run tests
28+
run: bundle exec rake

.travis.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)