Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/rust-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: "3.6.1"
- name: Install deps for build
run: |
sudo apt-get update
sudo apt-get install -y clang llvm-dev libclang-dev
- name: cargo doc
run: RUSTFLAGS="-D warnings" cargo doc --locked

Expand Down Expand Up @@ -94,6 +98,10 @@ jobs:
uses: arduino/setup-protoc@v1
with:
version: "3.6.1"
- name: Install deps for build
run: |
sudo apt-get update
sudo apt-get install -y clang llvm-dev libclang-dev
- name: Free disk space
run: |
sudo docker rmi $(docker image ls -aq) >/dev/null 2>&1 || true
Expand Down
Loading
Loading