Skip to content

IOPZ-2709 Fix bug in Dependabot automerging #63

IOPZ-2709 Fix bug in Dependabot automerging

IOPZ-2709 Fix bug in Dependabot automerging #63

Workflow file for this run

# based on https://github.com/ruby/setup-ruby/blob/master/README.md
name: Tests
on: [push, pull_request]
jobs:
ci:
name: CI
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
ruby: [ 3.1, 3.2 ]
runs-on: ${{ matrix.os }}
services:
postgres:
image: postgres:latest
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: order_as_specified_test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
mysql:
image: mysql:latest
env:
MYSQL_USER: mysql
MYSQL_PASSWORD: mysql
MYSQL_ROOT_PASSWORD: mysql
MYSQL_DATABASE: order_as_specified_test
ports:
- 3306:3306
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
env:
CI: true
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: sudo apt-get install libsqlite3-dev
- run: bundle exec rspec
- run: bundle exec rubocop
if: matrix.ruby == 3.2