mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
* Add Build CI Co-Authored-By: Margen67 <Margen67@users.noreply.github.com> * Readme: Change badges --------- Co-authored-by: Margen67 <Margen67@users.noreply.github.com>
28 lines
510 B
YAML
28 lines
510 B
YAML
name: Formatting check
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- "**/*.md"
|
|
- '**/*.txt'
|
|
- '3rdparty/*'
|
|
pull_request:
|
|
paths-ignore:
|
|
- "**/*.md"
|
|
- '**/*.txt'
|
|
- '3rdparty/*'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
formatting-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run clang-format
|
|
uses: jidicula/clang-format-action@v4.11.0
|
|
with:
|
|
exclude-regex: (libspirv|3rdparty)
|
|
clang-format-version: 16
|