Allow to add custom cmake build arguments #123
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: CodeStyle | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
vimlint: | |
name: vimlint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup python modules | |
uses: actions/setup-python@master | |
with: | |
python-version: 3.7 | |
- name: Install Vint | |
run: | | |
pip3 install vim-vint | |
- name: Run code style check | |
run: | | |
vint . | |
- name: vint | |
if: failure() && startsWith(github.event_name, 'pull_request') # Run to report code style issues | |
uses: reviewdog/action-vint@v1 | |
with: | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review # Change reporter. | |
level: error |