Skip to content

Commit

Permalink
.github/workflows/rust.yml: add protoc install
Browse files Browse the repository at this point in the history
  • Loading branch information
poshcoe committed Mar 29, 2024
1 parent 02f2d27 commit f57d33f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Prepare
run: apt install -y protobuf-compiler
- name: Run Clippy Native
run: cargo clippy
- name: Run Clippy WASM just-webrtc
Expand Down Expand Up @@ -46,6 +48,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Prepare
run: apt install -y protobuf-compiler
- name: Build
run: cargo build
- name: Build WASM just-webrtc
Expand All @@ -59,6 +63,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Prepare
run: apt install -y protobuf-compiler
- name: Run tests Native
run: cargo test
- name: Install wasm-pack
Expand Down

0 comments on commit f57d33f

Please sign in to comment.