Skip to content

Add favicon and web manifest for documentation site #22

Add favicon and web manifest for documentation site

Add favicon and web manifest for documentation site #22

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:14
env:
POSTGRES_PASSWORD: postgres
POSTGRES_DB: better_structure_sql_test
ports:
- 5432:5432
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
RAILS_ENV: test
DATABASE_URL: postgresql://postgres:postgres@localhost:5432/better_structure_sql_test
RAILS_VERSION: '8.1.1'
steps:
- uses: actions/checkout@v3
- name: Set up Ruby 3.4.7
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.4.7'
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rspec
- name: Run Rubocop
run: bundle exec rubocop
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.4.7'
bundler-cache: true
- name: Build gem
run: gem build better_structure_sql.gemspec