Skip to content

Bump actions/checkout from 1 to 4 in the github-actions group #42

Bump actions/checkout from 1 to 4 in the github-actions group

Bump actions/checkout from 1 to 4 in the github-actions group #42

Workflow file for this run

# GitHub Action to run cpplint recursively on all pushes and pull requests
# https://github.com/cpplint/GitHub-Action-for-cpplint
name: cpplint
on: [push, pull_request]
jobs:
cpplint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install cpplint
- run: cpplint --recursive .