Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/niclin/rails-github-actions-example
- Owner: niclin
- License: mit
- Created: 2019-10-29T14:16:06.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T15:34:04.000Z (almost 2 years ago)
- Last Synced: 2024-12-17T11:11:49.493Z (26 days ago)
- Topics: ci, github-actions, rails, rails6
- Language: Ruby
- Homepage: https://blog.niclin.tw/2019/10/31/building-a-rails-ci-piepline-and-run-rspec-on-github-actions/
- Size: 1.31 MB
- Stars: 17
- Watchers: 2
- Forks: 20
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```