Skip to content

Commit

Permalink
Fix rust pr build
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelnikolov committed Jul 25, 2024
1 parent 9031954 commit c60894a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,19 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup protocol buffers
run: |
sudo apt-get update
sudo apt-get install -y protobuf-compiler
- name: Checkout code
uses: actions/checkout@v4

- name: Build
run: cargo build --verbose

- name: Run tests
run: cargo test --verbose

- name: Run clippy
run: cargo clippy --verbose

0 comments on commit c60894a

Please sign in to comment.