Remove local ci for now

This commit is contained in:
Jorge Manrubia
2025-11-27 13:58:41 +01:00
parent e962ba82ed
commit 76d3ec0fc4
2 changed files with 0 additions and 29 deletions
-6
View File
@@ -1,6 +0,0 @@
#!/usr/bin/env ruby
require_relative "../config/boot"
require "active_support/continuous_integration"
CI = ActiveSupport::ContinuousIntegration
require_relative "../config/ci.rb"
-23
View File
@@ -1,23 +0,0 @@
# Run using bin/ci
require_relative "../lib/fizzy"
CI.run do
step "Setup", "bin/setup --skip-server"
step "Style: Ruby", "bin/rubocop"
step "Security: Gem audit", "bin/bundler-audit check --update"
step "Security: Importmap audit", "bin/importmap audit"
step "Security: Brakeman audit", "bin/brakeman --quiet --no-pager --exit-on-warn --exit-on-error"
step "Security: Gitleaks audit", "bin/gitleaks-audit"
step "Tests: Open source", "bin/rails test"
step "Tests: System", "bin/rails test:system"
if success?
step "Signoff: All systems go. Ready for merge and deploy.", "gh signoff"
else
failure "Signoff: CI failed. Do not merge or deploy.", "Fix the issues and try again."
end
end