Skip to content

Commit fedc7b9

Browse files
agrbergclaude
andcommitted
Replace Travis CI with GitHub Actions
Travis CI stopped free OSS builds in 2021. Add a GitHub Actions workflow that tests Ruby 3.3, 3.4, and 4.0 on every push to main and on all pull requests. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 776487e commit fedc7b9

2 files changed

Lines changed: 27 additions & 6 deletions

File tree

.github/workflows/ci.yml

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

.travis.yml

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

0 commit comments

Comments
 (0)