Skip to content

Introduce vertical split mode for executors #133

Introduce vertical split mode for executors

Introduce vertical split mode for executors #133

Workflow file for this run

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@v4
- 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