mirror of
https://github.com/Vita3K/Vita3K.git
synced 2026-07-11 01:34:23 +02:00
c8113ea462
Bumps the ci-deps group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-deps - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-deps ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
38 lines
645 B
YAML
38 lines
645 B
YAML
name: Format Check
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- .clang-format
|
|
- vita3k/**
|
|
- tools/**
|
|
|
|
pull_request:
|
|
paths:
|
|
- .clang-format
|
|
- vita3k/**
|
|
- tools/**
|
|
|
|
jobs:
|
|
format-check:
|
|
name: Format Check (${{ matrix.path }})
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
path:
|
|
- vita3k
|
|
- tools
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v7
|
|
with:
|
|
sparse-checkout: ${{ matrix.path }}
|
|
|
|
- name: Format check
|
|
uses: jidicula/clang-format-action@v4.18.0
|
|
with:
|
|
check-path: ${{ matrix.path }}
|