Skip to content

Foi adicionado seeds para facilitar a apresentacao e mudança de porta para padronizar #235

Foi adicionado seeds para facilitar a apresentacao e mudança de porta para padronizar

Foi adicionado seeds para facilitar a apresentacao e mudança de porta para padronizar #235

Workflow file for this run

name: "Ruby on Rails CI"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
env:
RAILS_ENV: test
steps:
- name: Checkout code
uses: actions/checkout@v4
# Add or replace dependency steps here
- name: Install Ruby and gems
uses: ruby/setup-ruby@78c01b705fd9d5ad960d432d3a0cfa341d50e410 # v1.179.1
with:
bundler-cache: true
# Add or replace database setup steps here
- name: Set up database schema
run: bin/rails db:schema:load
# Add or replace test runners here
- name: Run tests
run: bin/rake spec
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Ruby and gems
uses: ruby/setup-ruby@78c01b705fd9d5ad960d432d3a0cfa341d50e410 # v1.179.1
with:
bundler-cache: true
- name: Install bundler-audit
run: gem install bundler-audit
# Add or replace any other lints here
- name: Security audit dependencies
run: bundle-audit check --update
- name: Lint Ruby files
run: bundle exec rubocop