Skip to content

Merge branch 'need' of https://github.com/Kaweees/kiwiGL into need #136

Merge branch 'need' of https://github.com/Kaweees/kiwiGL into need

Merge branch 'need' of https://github.com/Kaweees/kiwiGL into need #136

Workflow file for this run

name: C Quality Check and Formatting
on: [push, pull_request]
jobs:
formatting-check:
name: clang-format
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Install clang-format
run: sudo apt install clang-format
- name: Run clang-format
run: |
./script/format.sh format
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
author_name: ${{ github.actor }}
author_email: ${{ github.actor }}@users.noreply.github.com
message: "Code formatting and linting"
add: "." # Add all files