missing space in toots #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
services: | |
mariadb: | |
image: mariadb:10.6 | |
env: | |
MARIADB_ROOT_PASSWORD: root | |
MARIADB_DATABASE: lobsters_dev | |
ports: | |
- 3306:3306 | |
env: | |
DATABASE_URL: mysql2://root:[email protected]/lobsters_dev | |
RAILS_ENV: test | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Load database schema | |
run: ./bin/rails db:schema:load | |
- name: Run pending migrations | |
run: ./bin/rails db:migrate | |
- name: Run tests | |
run: | | |
bundle exec rspec | |
bundle exec rspec spec/slow/*_spec.rb | |
- name: Run linters | |
run: | | |
bundle exec standardrb | |
- name: Run brakeman | |
run: | | |
bundle exec brakeman --ensure-latest --ensure-ignore-notes | |
- name: Find leaky gems | |
run: | | |
gem install bundler-leak | |
bundle leak update | |
bundle leak check |