DEV Community

Discussion on: A Rails and PostgreSQL setup for GitHub actions (CI)

Collapse
 
abdellani profile image
Mohamed ABDELLANI • Edited

Hi,

I was working on a very similar article (Actually, I'm not sure that I'll publish it now XD).

In my workflow, I set up two tests. The first one uses Rubocop to do static analysis of the code, and the second one uses RSpec and then generate a report using SimpleCov.
You can check my yaml file here

I also noticed another issue when I was trying to use environment variable to specify the version of the operating system that will be used for the tests.

Great job, thanks for sharing.

Collapse
 
vvo profile image
Vincent Voyer

Hey there, thanks for the comment. Indeed I haven't yet setup multiple steps with dependencies in my setup. I might have to and your example will be very useful, thanks!