Skip to content

Added docker files (#960) #2988

Added docker files (#960)

Added docker files (#960) #2988

Workflow file for this run

name: Clang-Format
on:
push:
branches:
- master
- 'dev**'
pull_request:
paths:
- 'tesseract**'
- '.github/workflows/clang_format.yml'
- '**clang-format'
schedule:
- cron: '0 5 * * *'
jobs:
clang_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run clang format
run: |
sudo apt update
sudo apt install -y git clang-format
./.run-clang-format
output=$(git diff)
if [ -n "$output" ]; then exit 1; else exit 0; fi