Skip to content

Update Amazon Linux base image #1084

Update Amazon Linux base image

Update Amazon Linux base image #1084

Workflow file for this run

env:
RUBY_VERSION: 3.1.0
DATABASE_URL: postgres://postgres:postgres@localhost:5432/postgres
name: CI
on:
push:
branches-ignore:
- 'develop'
- 'master'
- '**stable'
pull_request:
branches: "*"
jobs:
test:
name: Rubocop + Rails Test
runs-on: ubuntu-22.04
services:
postgres:
image: postgres:13
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports:
- 5432:5432
# Health checks to wait until postgres is ready
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Ruby ${{ env.RUBY_VERSION }}
uses: ruby/setup-ruby@v1.126.0
with:
ruby-version: ${{ env.RUBY_VERSION }}
- name: Bundle cache
uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- name: Bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Run Rubocop
run: bundle exec rubocop
- name: Run Rails Test
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/scalelite_test
run: |
bundler exec rails test:db
- name: Run RSpec
env:
DATABASE_URL: postgres://postgres:password@localhost:5432/scalelite_test
run: |
bundle exec rspec