Sha256: 2831ec72c43a49fb05d80938847ce73067b5644fd893c66957cf6ea94efee23a
Contents?: true
Size: 912 Bytes
Versions: 1
Compression:
Stored size: 912 Bytes
Contents
name: Tests on: push: branches: [ master ] pull_request: branches: [ master ] jobs: test: name: Run tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: 2.5.1 bundler-cache: true - name: Install Ruby packages run: bundle install - name: Install Ubuntu packages run: sudo apt-get update && sudo apt-get install numactl libaio-dev libmysqlclient-dev - name: Setup MySQL and ProxySQL (docker-compose) run: docker-compose up -d # Might have to change to docker compose up -d (i.e. Compose V2) when the Ubuntu image changes the docker-compose version - name: Wait until DBs are alive run: ./scripts/helpers/wait-for-dbs.sh timeout-minutes: 2 - name: Run tests run: bundle exec rake specs
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
lhm-shopify-3.5.0 | .github/workflows/test.yml |