Skip to content

Commit

Permalink
fix: explicitly install protoc and python
Browse files Browse the repository at this point in the history
  • Loading branch information
drbh committed Jul 2, 2024
1 parent 26eb7ce commit 2d0bd1a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/autodocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,17 @@ jobs:
- name: Checkout code
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
id: install-launcher
run: cargo install --path launcher/
Expand All @@ -19,6 +30,11 @@ jobs:
id: install-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
run: |
python update_doc.py --check

0 comments on commit 2d0bd1a

Please sign in to comment.