Skip to content

ユーザーフォロー機能 #58

ユーザーフォロー機能

ユーザーフォロー機能 #58

Workflow file for this run

name: "【Docker】Ruby on Rails CI"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
run-htmlbeautifier:
name: Run htmlbeautifier
runs-on: ubuntu-latest
steps:
- name: checkout pushed commit
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: run htmlbeautifier on docker-compose
run: |
docker-compose build
docker-compose run --rm web bin/setup
docker-compose run --rm web bin/htmlbeautifier
git diff --exit-code