Linter pass on pull request #1
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: Linter pass on pull request | |
# Trigger the workflow on pull request (assigned) event for the branch | |
# https://help.github.com/en/actions/reference/events-that-trigger-workflows | |
on: | |
pull_request: | |
branches: [dev] | |
types: [assigned] | |
jobs: | |
clang_format_linter: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
# Start clang format by assigning pull-request to yourself. | |
if: ${{ github.event.assignee.login == github.event.pull_request.user.login }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DoozyX/[email protected] | |
with: | |
source: '.' | |
clangFormatVersion: 10 |