Skip to content

Commit

Permalink
coffee
Browse files Browse the repository at this point in the history
  • Loading branch information
infiniteregrets committed Dec 13, 2024
1 parent c71316c commit c55eb3f
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,11 @@ jobs:
version: "^1.0"
- name: check proto build up-to-date
run: |
cargo build --features prost-build
if git diff proto/; then
git diff --exit-code src/api.rs && echo "proto/ and src/api.rs are up-to-date" || {
echo "src/api.rs is not up-to-date"
exit 1
}
else
git diff --exit-code src/api.rs
fi
cargo build --features prost-build
git diff --exit-code src/api.rs && echo "Up-to-date" || {
echo "Not up-to-date"
exit 1
}
- name: check documentation
env:
RUSTDOCFLAGS: -D warnings
Expand Down

0 comments on commit c55eb3f

Please sign in to comment.