Remove disable for Lint/AmbiguousOperator #84
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
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 |