Skip to content

Commit

Permalink
Use GitHub actions for testing [wip]
Browse files Browse the repository at this point in the history
  • Loading branch information
sshaw committed Aug 31, 2024
1 parent 9d1775b commit 8f2bf2e
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 30 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: Ruby

on:
- push
- pull_request

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
ruby: ['3.2', '3.1', '3.0', '2.7', '2.6', '2.5', '2.4' ]
gemfile: [gemfiles/as4.gemfile, gemfiles/as5.gemfile, gemfiles/as6.gemfile]
exclude:
- ruby-version: 2.3
gemfile: gemfiles/as6.gemfile
- ruby-version: 2.4
gemfile: gemfiles/as6.gemfile
- ruby-version: 2.7
gemfile: gemfiles/as4.gemfile

steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- run: bundle exec rake
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

0 comments on commit 8f2bf2e

Please sign in to comment.