Skip to content

Merge pull request #31 from mlibrary/term-fetcher-concurrency-bug #188

Merge pull request #31 from mlibrary/term-fetcher-concurrency-bug

Merge pull request #31 from mlibrary/term-fetcher-concurrency-bug #188

Workflow file for this run

name: Run Tests
on: push
jobs:
# Run tests
test:
runs-on: ubuntu-latest
services:
mariadb:
image: mariadb:10
env:
MARIADB_USER: user
MARIADB_PASSWORD: password
MARIADB_DATABASE: database
MARIADB_ROOT_PASSWORD: password
ports: ["3306:3306"]
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3
steps:
- uses: actions/checkout@v3
- name: Create .env file
run: cat env.* > .env
- name: Load .env file
uses: xom9ikk/dotenv@v2
- name: wait for mysql
run: |
while ! mysqladmin ping -h"127.0.0.1" -P"3306" --silent; do
sleep 1
done
- name: Set up Ruby 3.2
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
- name: run tests but not the ones that touch solrcloud
run: bundle exec rspec --tag ~solrcloud
env:
GHA_TEST: "true"