build(deps): bump JamesIves/github-pages-deploy-action from 4.6.4 to 4.6.8 #49
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
######################################################################### | |
# # | |
# Author: Copyright (C) 2024 Mark Grant # | |
# # | |
# Released under the GPLv3 only. # | |
# SPDX-License-Identifier: GPL-3.0-only # | |
# # | |
# Purpose: # | |
# Action to run clang-format to check C source coding style. # | |
# # | |
######################################################################### | |
name: clang-format check | |
on: [push, pull_request] | |
jobs: | |
formatting-check: | |
name: Format check | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run clang-format style check | |
uses: jidicula/[email protected] | |
with: | |
clang-format-version: '14' | |