Skip to content

Remove tests folder and test action as there are no relevant tests #19

Remove tests folder and test action as there are no relevant tests

Remove tests folder and test action as there are no relevant tests #19

Workflow file for this run

---
name: ROS
on:
pull_request:
push:
branches:
- foxy*
- humble*
- iron*
- rolling*
- main*
workflow_dispatch:
jobs:
lint:
name: ament_${{ matrix.linter }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
linter: [uncrustify, xmllint, flake8, pep257]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run linter
uses: ./.github/actions/lint/
env:
LINTER: ${{ matrix.linter }}
complete:
name: Tests passed
needs:
- lint
runs-on: ubuntu-latest
steps:
- name: Check
run: echo "Completed successfully!"