Skip to content

Upgrade to Rails 7.2, Ruby 3.3, Alpine 3.20 #5243

Upgrade to Rails 7.2, Ruby 3.3, Alpine 3.20

Upgrade to Rails 7.2, Ruby 3.3, Alpine 3.20 #5243

Workflow file for this run

env:
RUBY_VERSION: 3.3
DATABASE_URL: postgres://postgres:postgres@localhost/greenlight-actions
RAILS_ENV: test
name: CI
on:
pull_request:
branches: "*"
jobs:
test:
name: Rubocop + RSpec + ESLint + License Header Check
runs-on: ruby:${{ env.RUBY_VERSION }}

Check failure on line 14 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 14, Col: 14): Unrecognized named-value: 'env'. Located at position 1 within expression: env.RUBY_VERSION
services:
postgres:
image: postgres:13-alpine
env:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
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@v2
- name: Bundle cache
uses: actions/cache@v2
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: NPM install
run: npm install
- name: Setup database
run: |
bundler exec rails db:create
bundler exec rails db:migrate
- name: Run Rubocop
run: bundle exec rubocop --parallel
- name: Run RSpec
run: bundle exec rspec
- name: Run ESLint
run: npx eslint app/javascript/* --ext .js,.jsx
- name: Fix License Header
uses: apache/skywalking-eyes/header@main