fix: explicitly install protoc and python

This commit is contained in:
drbh 2024-07-02 18:58:14 +00:00
parent 26eb7cea3a
commit 2d0bd1ab6d

View File

@ -11,6 +11,17 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Install Protocol Buffers compiler
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler libprotobuf-dev
- name: Install Launcher - name: Install Launcher
id: install-launcher id: install-launcher
run: cargo install --path launcher/ run: cargo install --path launcher/
@ -19,6 +30,11 @@ jobs:
id: install-router id: install-router
run: cargo install --path router/ run: cargo install --path router/
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Check that documentation is up-to-date - name: Check that documentation is up-to-date
run: | run: |
python update_doc.py --check python update_doc.py --check