Add contributions to acknowledgement page #11
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: "Build Multiversion Page (PR)" | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
build-multiversion: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
cache: 'pip' | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade --requirement requirements.txt | |
shell: bash | |
- name: Install generate_parameter_library | |
run: | | |
cd | |
git clone https://github.com/PickNikRobotics/generate_parameter_library.git | |
cd generate_parameter_library/generate_parameter_library_py/ | |
python -m pip install . | |
shell: bash | |
- name: Install doxygen and graphviz | |
run: sudo apt-get install -y doxygen graphviz | |
- name: Build multiversion with API | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
make multiversion-with-api |