This repository was archived by the owner on Feb 26, 2025. It is now read-only.
Updating copyright year 2024 #1809
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
name: clang-format-check | |
on: [pull_request, push] | |
jobs: | |
build: | |
name: clang-format-check | |
runs-on: ubuntu-20.04 | |
# Run on external PRs, but not internal PRs as they'll be run by the push | |
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository | |
steps: | |
- name: Fetch repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Install packages | |
run: sudo apt-get update && sudo apt-get install python3-venv | |
- name: check_clang_format | |
run: ci/check_clang_format.sh |