We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8249905 commit 35cf59fCopy full SHA for 35cf59f
.fluentci/fluentci.toml
@@ -0,0 +1,19 @@
1
+[[steps]]
2
+name = "Start Postgres"
3
+command = ["fluentci run --wasm postgres start"]
4
+env = ["POSTGRES_USER=postgres", "POSTGRES_DB=demo_rails_test"]
5
+
6
7
+name = "Check style + security"
8
+command = ["fluentci run --wasm ruby bundle_exec rubocop"]
9
+env = ["RUBY_VERSION=3.1.4"]
10
11
12
+name = "Run tests"
13
+command = [
14
+ "fluentci run --wasm ruby bundle_exec rails db:migrate",
15
+ "fluentci run --wasm ruby bundle_exec rails db:seed",
16
+ "fluentci run --wasm ruby bundle_exec rails test",
17
+ "fluentci run --wasm ruby bundle_exec rails spec",
18
+]
19
+env = ["RAILS_ENV=test"]
0 commit comments