Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Nov 19, 2023
1 parent 9a4c339 commit b993444
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,14 @@ jobs:
export PATH=$PATH:$PROTOC
protoc --version
- name: Build Rust code
run: cargo build --verbose
run: |
export PROTOC=$HOME/d/protoc/bin
export PATH=$PATH:$PROTOC
protoc --version
cargo build --verbose
- name: Run tests
run: cargo test --verbose
run: |
export PROTOC=$HOME/d/protoc/bin
export PATH=$PATH:$PROTOC
protoc --version
cargo test --verbose

0 comments on commit b993444

Please sign in to comment.