Skip to content
Merged
Changes from all 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
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,17 @@ jobs:

- name: Run clippy (fail on warnings)
run: cargo clippy --all-targets --all-features

- name: Check copyright headers
run: |
#!/bin/bash
set -e
find . -name "*.rs" -type f -not -path "./target/*" -not -path "./envoy-data-plane-api/*" | while read -r file; do
if ! head -1 "$file" | grep -q "Copyright"; then
echo "Missing copyright header in $file"
exit 1
fi
done

# Build and test that share artifacts
build-and-test:
Expand Down
Loading