STASH #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Run tests | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: ['main', 'devel'] | |
pull_request: | |
jobs: | |
canary: | |
uses: ./.github/workflows/pytest.yaml | |
with: | |
# Choose rosdistro for a canary build. It has ros-infrastructure | |
# dependencies and installs scripts, so exercieses a fair amount of the | |
# CI action features. | |
repository: ros-infrastructure/rospkg | |
# Use HEAD to find strategy.json file instead of the tip of | |
# ros-infrastructure/ci | |
setup-repository: '' | |
yamllint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: yamllint . |