mirror of
https://github.com/zoriya/Bomberman.git
synced 2026-02-18 19:23:45 +00:00
13 lines
291 B
YAML
13 lines
291 B
YAML
name: Check coding style
|
|
on: [push]
|
|
|
|
jobs:
|
|
Building:
|
|
runs-on: [ubuntu-latest]
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Install cpplint
|
|
run: pip install cpplint
|
|
- name: Check coding style
|
|
run: |
|
|
cpplint --recursive --quiet --verbose=3 . |