Sha256: 8226c326ed887d7f755b2c561ca09498bac6c3ba0b7f0e8c16011f6bff357bf0
Contents?: true
Size: 533 Bytes
Versions: 10
Compression:
Stored size: 533 Bytes
Contents
#!/usr/bin/env bash #set -e echo "[ bin/ci ] Running tests" bin/rails test echo "[ bin/ci ] Analyzing code for security vulnerabilities with brakeman." echo "[ bin/ci ] Output will be in tmp/brakeman.html, which" echo "[ bin/ci ] can be opened in your browser." bundle exec brakeman -q -o tmp/brakeman.html echo "[ bin/ci ] Analyzing Ruby gems for" echo "[ bin/ci ] security vulnerabilities with bundle audit" bundle exec bundle-audit check --update echo "[ bin/ci ] Linting: Running rubocop" bin/rubocop echo "[ bin/ci ] Done"
Version data entries
10 entries across 10 versions & 1 rubygems