Skip to content

Commit

Permalink
Switch to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryguy committed Feb 3, 2022
1 parent ef46d15 commit 113ea23
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 30 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: CI

on: [push, pull_request]

jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version:
- '2.5'
- '2.6'
- '2.7'
rails-version:
- '6.0'
- '6.1'
services:
postgres:
image: manageiq/postgresql:10
env:
POSTGRESQL_USER: root
POSTGRESQL_PASSWORD: smartvm
POSTGRESQL_DATABASE: vmdb_test
options: --health-cmd pg_isready --health-interval 2s --health-timeout 5s --health-retries 5
ports:
- 5432:5432
env:
TEST_RAILS_VERSION: ${{ matrix.rails-version }}
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Prepare tests
run: bin/setup
- name: Run tests
run: bundle exec rake
- if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '2.7' }}
name: Report code coverage
continue-on-error: true
uses: paambaati/[email protected]
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ManageIQ::Schema

[![Build Status](https://travis-ci.com/ManageIQ/manageiq-schema.svg?branch=master)](https://travis-ci.com/github/ManageIQ/manageiq-schema)
[![CI](https://github.com/ManageIQ/manageiq-schema/actions/workflows/ci.yaml/badge.svg)](https://github.com/ManageIQ/manageiq-schema/actions/workflows/ci.yaml)
[![Maintainability](https://api.codeclimate.com/v1/badges/f7888b08eb72806b2860/maintainability)](https://codeclimate.com/github/ManageIQ/manageiq-schema/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/f7888b08eb72806b2860/test_coverage)](https://codeclimate.com/github/ManageIQ/manageiq-schema/test_coverage)

Expand Down
3 changes: 0 additions & 3 deletions bin/ci/after_script

This file was deleted.

8 changes: 2 additions & 6 deletions bin/setup
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
#!/bin/bash
if [[ -n "$CI" ]]; then
echo 'gem: --no-ri --no-rdoc --no-document' > ~/.gemrc
bundle config --local path $(pwd)/vendor/bundle

psql -c "CREATE USER root SUPERUSER PASSWORD 'smartvm';" -U postgres
if [ -z "$CI" ]; then
bundle update --jobs=3
fi

cp -n spec/dummy/config/database.{tmpl.,}yml

bundle update --jobs=3
bundle exec rake spec:setup
4 changes: 0 additions & 4 deletions bin/update

This file was deleted.

1 change: 1 addition & 0 deletions bin/update
Empty file removed bundler.d/.gitkeep
Empty file.
2 changes: 1 addition & 1 deletion manageiq-schema.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "manageiq-style"
spec.add_development_dependency "rspec"
spec.add_development_dependency "rspec-rails"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "simplecov", ">= 0.21.2"
end

0 comments on commit 113ea23

Please sign in to comment.