transport/serial: fix typo in encoding example (#135) #149
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
# A workflow to create the Cyphal Specification PDF | |
name: CI | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Build PDF file using LaTeX | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Run texer container | |
uses: docker://ghcr.io/opencyphal/texer:te22.4.1 | |
with: | |
entrypoint: /bin/bash | |
args: > | |
-c " | |
git config --global --add safe.directory '*' && | |
pip install -U setuptools && | |
pip install -r requirements.txt && | |
./compile.sh | |
" | |
- name: Upload pdf as an artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Cyphal Specification | |
path: specification/Cyphal_Specification.pdf | |
if-no-files-found: error | |
- name: Upload diagnostic snapshot | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: workspace-${{github.job}} | |
path: '*' | |
retention-days: 3 |