Skip to content

Create and apply unified Formatting settings #15

Create and apply unified Formatting settings

Create and apply unified Formatting settings #15

Workflow file for this run

name: check
on:
push:
branches:
- main
- master
pull_request:
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt update
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC sudo apt install -yq --no-install-recommends pre-commit
- name: Execute Pre-commit Hooks
run: pre-commit run --show-diff-on-failure --color=always --all-files