Skip to content

Remove disable for Lint/AmbiguousOperator #84

Remove disable for Lint/AmbiguousOperator

Remove disable for Lint/AmbiguousOperator #84

Workflow file for this run

name: Checks
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: read
jobs:
docker-build:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build
uses: docker/build-push-action@v3
with:
cache-from: type=gha
cache-to: type=gha,mode=max
tags: reverser:test
tests:
runs-on: ubuntu-latest
needs: docker-build
services:
postgres:
image: postgres:15-alpine
env:
POSTGRES_USER: reverser
POSTGRES_DB: reverser_test
POSTGRES_HOST_AUTH_METHOD: trust
ports:
- 5432:5432
options: >-
--mount type=tmpfs,destination=/var/lib/postgresql/data
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v3
- uses: ./.github/prepare-docker-image
- name: Create DB
run: $DOCKER_RUN bin/rails db:schema:load
- name: Run Tests
run: $DOCKER_RUN bundle exec rails test
rubocop:
runs-on: ubuntu-latest
needs: docker-build
steps:
- uses: actions/checkout@v3
- uses: ./.github/prepare-docker-image
- name: Run Rubocop
run: $DOCKER_RUN bundle exec rubocop --format github