-
Notifications
You must be signed in to change notification settings - Fork 3
31 lines (28 loc) · 1 KB
/
programming_topic_lint.yml
File metadata and controls
31 lines (28 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# This is a workflow to get source code and run tests of common functions
name: ProgrammingTopicLints
# Controls when the action will run. Workflow runs when manually triggered using the UI or API.
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# # Allows you to run this workflow every time a commit is pushed to the repository
# push:
# branches:
# - '**'
# paths:
# - 'F02_Programming_Topics/**'
# - '.github/workflows/programming_topic_lint.yml'
# - '.github/workflows/taskRunner/runGTests.sh'
# # Allows you to run this workflow every time a pull request is opened or updated
# pull_request:
# branches:
# - '**'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# Job
Cpplint:
# Runner
runs-on: ubuntu-latest
steps:
# Step: Checkout source code
- name: Checkout source code
uses: actions/checkout@main