Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

refactor(*): bump ZenKit #232

refactor(*): bump ZenKit

refactor(*): bump ZenKit #232

Workflow file for this run

name: 'Lint'
on: 'push'
jobs:
format:
name: 'Formatting'
runs-on: 'ubuntu-latest'
container:
image: 'docker.io/ubuntu:latest'
steps:
- name: "Dependencies"
run: 'apt update && apt install -y git clang-format'
- uses: 'actions/checkout@v3'
with:
submodules: 'recursive'
- name: 'clang-format'
shell: 'bash'
run: 'find include src -iname "*.h" -or -iname "*.cc" | xargs clang-format --dry-run --style=file --Werror'