プロフィール編集画面 #35
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: "【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 |