Add spec for last message info in category partial #151
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# This workflow will download a prebuilt Ruby version, install dependencies and run tests with Rake | |
# For more information see: https://github.com/marketplace/actions/setup-ruby-jruby-and-truffleruby | |
name: Hanami | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
env: | |
HANAMI_ENV: test | |
DATABASE_URL: postgres://palaver:password@localhost/palaver_test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: ['3.2', '3.3'] | |
services: | |
postgres: | |
image: postgres:12.7 | |
env: | |
POSTGRES_USER: palaver | |
POSTGRES_DB: palaver_test | |
POSTGRES_PASSWORD: password | |
ports: ["5432:5432"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby, | |
# change this to (see https://github.com/ruby/setup-ruby#versioning): | |
# uses: ruby/setup-ruby@v1 | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Setup test database | |
run: bundle exec hanami db migrate --no-dump | |
- name: npm install | |
run: npm install | |
- name: Compile assets | |
run: bundle exec hanami assets compile | |
- name: Run tests | |
run: bundle exec rspec | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
- name: Check style | |
run: bundle exec standardrb | |
- name: Run seeds | |
run: bundle exec rake db:seeds |