66 lines
1.9 KiB
YAML
66 lines
1.9 KiB
YAML
|
# License: LGPL-3.0-or-later
|
||
|
name: Ruby test and build
|
||
|
on:
|
||
|
push:
|
||
|
paths-ignore:
|
||
|
- "**.[jt]sx?"
|
||
|
- "**.es6"
|
||
|
- "**.md"
|
||
|
- "NOTICE-js"
|
||
|
- "NOTICE-ruby"
|
||
|
- "package.json"
|
||
|
- "yarn.lock"
|
||
|
pull_request:
|
||
|
paths-ignore:
|
||
|
- "**.[jt]sx?"
|
||
|
- "**.es6"
|
||
|
- "**.md"
|
||
|
- "**.md"
|
||
|
- "NOTICE-js"
|
||
|
- "NOTICE-ruby"
|
||
|
- "package.json"
|
||
|
- "yarn.lock"
|
||
|
jobs:
|
||
|
main_build:
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
os: [ubuntu-latest]
|
||
|
node: [14.6.0]
|
||
|
ruby: [2.6.6]
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Setup PostgreSQL with PostgreSQL extensions and unprivileged user
|
||
|
uses: Daniel-Marynicz/postgresql-action@0.1.0
|
||
|
with:
|
||
|
postgres_image_tag: 11-alpine
|
||
|
postgres_user: houdini_user
|
||
|
postgres_password: password
|
||
|
- uses: actions/setup-node@v1.4.2
|
||
|
with:
|
||
|
node-version: ${{ matrix.node }}
|
||
|
- uses: actions/cache@v1
|
||
|
name: Use Node package cache
|
||
|
with:
|
||
|
path: node_modules
|
||
|
key: bundle-use-node-js-${{ matrix.os }}-${{ matrix.node }}-${{ hashFiles('**/yarn.lock', '**/package.json') }}
|
||
|
restore-keys: |
|
||
|
bundle-use-node-js-${{ matrix.os }}-${{ matrix.node }}-
|
||
|
- run: yarn install --frozen-lockfile
|
||
|
- uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
|
||
|
with:
|
||
|
ruby-version: ${{ matrix.ruby }}
|
||
|
- uses: actions/cache@v1
|
||
|
name: Use Gem cache
|
||
|
with:
|
||
|
path: vendor/bundle
|
||
|
key: bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-${{ hashFiles('**/Gemfile.lock') }}
|
||
|
restore-keys: |
|
||
|
bundle-use-ruby-${{ matrix.os }}-${{ matrix.ruby }}-
|
||
|
- run: |
|
||
|
bundle config deployment true
|
||
|
bundle config path vendor/bundle
|
||
|
bundle install --jobs 4
|
||
|
- run: bin/setup ci
|
||
|
- name: run spec
|
||
|
run: bin/rails spec
|