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
15 changes: 15 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,21 @@ jobs:
enable_embedded_wasm_sdk_build: true
enable_android_sdk_build: true

source-integrity:
name: Source integrity check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Run update.sh and check for modifications
run: |
bash update.sh
if [ -n "$(git diff --name-only)" ]; then
echo "::error::Source files do not match the upstream SQLite release. The following files differ:"
git diff
exit 1
fi

soundness:
name: Soundness
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
Expand Down
Loading