Skip to content

Commit

Permalink
configure github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sarthou committed Jun 9, 2024
1 parent 60a0b5e commit 832fe21
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 3 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/ROS1.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
name: ROS1 CI

on: [push, workflow_dispatch]
on:
push:
paths-ignore:
- 'docs/**'
- 'launch/ros2/**'
- 'resources/*'
pull_request:
paths-ignore:
- 'docs/**'
- 'launch/ros2/**'
- 'resources/*'

jobs:
build:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/ROS2.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: ROS2 CI

on: [push, workflow_dispatch]
on:
push:
paths-ignore:
- 'docs/**'
- 'resources/*'
pull_request:
paths-ignore:
- 'docs/**'
- 'resources/*'

jobs:
build:
Expand Down
22 changes: 21 additions & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
name: Clang linter

on: [push, workflow_dispatch]
on:
push:
branches:
- master
- dev
paths-ignore:
- 'docs/**'
- 'resources/*'
- 'ui/*'
- 'files/*'
- 'configuration/*'
pull_request:
branches:
- master
- dev
paths-ignore:
- 'docs/**'
- 'resources/*'
- 'ui/*'
- 'files/*'
- 'configuration/*'

jobs:
build:
Expand Down

0 comments on commit 832fe21

Please sign in to comment.