Yamllint #90
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
name: Checks | |
on: # yamllint disable-line rule:truthy | |
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@v3 | |
- name: Build | |
uses: docker/build-push-action@v5 | |
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@v4 | |
- 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@v4 | |
- uses: ./.github/prepare-docker-image | |
- name: Run Rubocop | |
run: $DOCKER_RUN bundle exec rubocop --format github | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- run: > | |
pip install yamllint=1.32.0 && | |
yamllint -c .github/yamllint.yml -s . |