Merge pull request #68 from panorama-ed/switch-panolint-to-panolint-ruby #57
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |