Fix ROS 2 build when ZeroMQ or SQlite3 include are not in the default include path #363
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: Pixi (conda) | |
on: [push, pull_request] | |
jobs: | |
pixi_conda_build: | |
strategy: | |
matrix: | |
os: | |
- windows-latest | |
- ubuntu-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
# Pixi is the tool used to create/manage conda environment | |
- uses: actions/checkout@v3 | |
- uses: prefix-dev/[email protected] | |
with: | |
pixi-version: v0.16.1 | |
- name: Build | |
run: pixi run build | |
- name: Run tests | |
run: pixi run test |