Linting Ekatwikz's pull_request to 9/merge #61
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: Lint | |
run-name: Linting ${{ github.actor }}'s ${{ github.event_name }} to ${{ github.ref_name }} | |
on: | |
workflow_dispatch: | |
pull_request: | |
release: | |
types: [published] | |
push: | |
tags: | |
branches: | |
- main | |
env: | |
# Might be too new tho lol | |
CLANG_TIDY_VERSION: "16.0.4" | |
VERBOSE: 1 | |
jobs: | |
Clang-Tidy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
# TODO: CACHE?! | |
- name: Setup Cpp | |
uses: aminya/setup-cpp@v1 | |
with: | |
clangtidy: ${{ env.CLANG_TIDY_VERSION }} | |
- name: Check Formatting and Lint | |
run: | | |
./lint-helper.sh -c format -c lint |