mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-17 21:22:29 -04:00
8adad4c4da
* Update upgrade-version tool * Verify that version upgrade still works for every PR * Add git diff to the end of CI --------- Co-authored-by: Noa <coolreader18@gmail.com> Co-authored-by: John Detter <no-reply@boppygames.gg> Co-authored-by: Zeke Foppa <196249+bfops@users.noreply.github.com>
20 lines
423 B
YAML
20 lines
423 B
YAML
name: Upgrade Version Check
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
merge_group:
|
|
permissions: read-all
|
|
|
|
jobs:
|
|
version_upgrade_check:
|
|
runs-on: spacetimedb-runner
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Verify that upgrade-version still works
|
|
run: cd tools/upgrade-version && cargo run -- 123.456.789
|
|
- name: Show diff
|
|
run: git diff HEAD
|
|
|