mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
Merge pull request #689 from petergoldstein/feature/switch_to_github_actions
Switch to GitHub Actions
This commit is contained in:
commit
20cfceac23
2 changed files with 37 additions and 14 deletions
37
.github/workflows/ci.yml
vendored
Normal file
37
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
name: Tests
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
test:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
ruby-version:
|
||||||
|
- '3.1'
|
||||||
|
- '3.0'
|
||||||
|
- '2.7'
|
||||||
|
- '2.6'
|
||||||
|
- '2.5'
|
||||||
|
|
||||||
|
services:
|
||||||
|
redis:
|
||||||
|
image: redis
|
||||||
|
options: >-
|
||||||
|
--health-cmd "redis-cli ping"
|
||||||
|
--health-interval 10s
|
||||||
|
--health-timeout 5s
|
||||||
|
--health-retries 5
|
||||||
|
ports:
|
||||||
|
- 6379:6379
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Set up Ruby ${{ matrix.ruby-version }}
|
||||||
|
uses: ruby/setup-ruby@v1
|
||||||
|
with:
|
||||||
|
ruby-version: ${{ matrix.ruby-version }}
|
||||||
|
bundler-cache: true # 'bundle install' and cache
|
||||||
|
- name: Run tests
|
||||||
|
run: bundle exec rake
|
14
.travis.yml
14
.travis.yml
|
@ -1,14 +0,0 @@
|
||||||
dist: bionic
|
|
||||||
language: ruby
|
|
||||||
services:
|
|
||||||
- redis
|
|
||||||
rvm:
|
|
||||||
- 2.5
|
|
||||||
- 2.6
|
|
||||||
- 2.7
|
|
||||||
- 3.0
|
|
||||||
before_script:
|
|
||||||
- bin/setup
|
|
||||||
cache:
|
|
||||||
bundler: true
|
|
||||||
|
|
Loading…
Reference in a new issue