Skip to content

Trying to resolve noble based CI fixes #114

Trying to resolve noble based CI fixes

Trying to resolve noble based CI fixes #114

Workflow file for this run

name: CI
on:
push:
pull_request:
branches:
- main
jobs:
unit_tests:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
container: ['ros:iron', 'ros:rolling']
container: ${{ matrix.container }}
env:
PIP_BREAK_SYSTEM_PACKAGES: 1
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pip
run: apt update && apt install -y python3-pip
- name: Install pip dependencies
run: |
python3 -m pip install .[test]
python3 -m pip freeze
- name: Install apt dependencies
run: sudo apt update && sudo apt install -y doxygen graphviz
- name: Run tests
run: py.test --verbose test