Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/niclin/rails-github-actions-example

Rails CI pipeline with GitHub Actions example
https://github.com/niclin/rails-github-actions-example

ci github-actions rails rails6

Last synced: 22 days ago
JSON representation

Rails CI pipeline with GitHub Actions example

Awesome Lists containing this project

README

        

Simple use of github action with Rails project

## Info

- Web: Rails 6.0.0
- Database: PostgreSQL
- Testing: Rspec

## Note

```
# initialize Rails app
rails new rails-github-actions-example --skip-turbolinks --skip-spring --database=postgresql -T

# Add rspec gem
gem "rspec-rails", "~> 3.8"

# Add User scaffold
rails generate scaffold User name:string email:string

# run rspec
rspec
```