Main app window #19
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: Pre-commit ubuntu | |
on: [push, pull_request] | |
env: | |
BUILD_TYPE: Release | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y llvm cppcheck | |
sudo apt-get install -y iwyu | |
- name: Pre-commit actions | |
uses: pre-commit/[email protected] | |