Skip to content
This repository was archived by the owner on Aug 14, 2025. It is now read-only.

Add "repository archived" note to README #67

Add "repository archived" note to README

Add "repository archived" note to README #67

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build:
env:
JRUBY_OPTS: '-J-XX:+TieredCompilation -J-XX:TieredStopAtLevel=1 -J-Xss2m -Xcompile.invokedynamic=false'
JAVA_OPTS: ${{ matrix.java_opts }}
runs-on: ubuntu-22.04
strategy:
matrix:
include:
- mysql: 5-7
java_opts: '-Djava.security.properties=docker/ecco-java.security' # Enable TLS 1.1, required by MySQL 5.7
- mysql: 8-0
java_opts: ''
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Start MySQL container
run: docker-compose -f docker-compose-mysql-base.yml -f docker-compose-mysql-${{ matrix.mysql }}.yml up -d
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: jruby-9.3.7.0
bundler-cache: true
- name: Run tests
run: bin/all_specs