Bump actions/setup-python from 5.1.0 to 5.2.0 #1064
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: CI | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
python-version: '3.10' | |
- uses: pre-commit/[email protected] | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Test supported ROS 2 distributions | |
# https://docs.ros.org/en/rolling/Releases.html | |
# NOTE: Humble does not work on the `ros2` branch, so it is tested in its own branch. | |
- ros: iron | |
os: ubuntu-22.04 | |
- ros: jazzy | |
os: ubuntu-24.04 | |
- ros: rolling | |
os: ubuntu-24.04 | |
name: ROS 2 ${{ matrix.ros }} (${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
path: ros_ws/src | |
- uses: ros-tooling/[email protected] | |
- uses: ros-tooling/[email protected] | |
with: | |
target-ros2-distro: ${{ matrix.ros }} |