Skip to content

Commit

Permalink
Ruby v3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simonneutert committed Jan 20, 2024
1 parent 9a1dffc commit 307a343
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: ruby

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
ruby-qa:
runs-on: ubuntu-latest

services:
postgres:
image: postgres:15-alpine
ports: ["5432:5432"]
env:
POSTGRES_USER: kaching
POSTGRES_PASSWORD: kaching
LC_ALL: C.UTF-8
LANG: en_US.UTF-8
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
RACK_ENV: test
DATABASE_URL: localhost
DATABASE_USER: kaching
DATABASE_PASSWORD: kaching
DATABASE_NAME_SHARED: kaching_development

strategy:
fail-fast: false
matrix:
ruby: ["ruby-3.3"]
os: [macos-latest, ubuntu-latest]

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- name: Rubocop
run: bundle exec rubocop

0 comments on commit 307a343

Please sign in to comment.