Skip to content

Commit

Permalink
Move CI to GitHub Actions
Browse files Browse the repository at this point in the history
Closes #725.
Closes #726.

Co-authored-by: Jean Boussier <jean.boussier@gmail.com>
  • Loading branch information
2 people authored and robin850 committed May 31, 2024
1 parent 3e3f0b5 commit 14d3c28
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 30 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: test

on: [push, pull_request]

jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false

matrix:
ruby-version:
- '2.3'
- '2.4'
- '2.5'
- '2.6'
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'
- ruby-head

steps:
- run: sudo apt-get install -y tidy tcl tk

- uses: actions/checkout@v3

- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
continue-on-error: ${{ matrix.ruby-version == 'ruby-head' }}

- run: bundle exec rake
continue-on-error: ${{ matrix.ruby-version == 'ruby-head' }}
30 changes: 0 additions & 30 deletions .travis.yml

This file was deleted.

0 comments on commit 14d3c28

Please sign in to comment.