Skip to content

If the passed in origin isn't a Symphony location, then treat it as a… #1912

If the passed in origin isn't a Symphony location, then treat it as a…

If the passed in origin isn't a Symphony location, then treat it as a… #1912

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.2']
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-202103-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-202103
- name: Use Node.js 18.17
uses: actions/setup-node@v3
with:
node-version: '18.17'
- name: Bundle install
run: bundle config path vendor/bundle
- name: Install dependencies
run: bin/setup
- name: Ensure tmp/pids exists
run: mkdir -p tmp/pids
- name: Run tests for FOLIO
run: bundle exec rake