Skip to content

Commit

Permalink
ci: check contract artifact staleness
Browse files Browse the repository at this point in the history
  • Loading branch information
xJonathanLEI committed Nov 8, 2023
1 parent 1497446 commit 11e04e1
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
40 changes: 40 additions & 0 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
on:
push:
branches:
- "master"
pull_request:

name: "Validate contract artifacts"

jobs:
check-artifacts:
name: "Check artifacts"
runs-on: "ubuntu-latest"

steps:
- name: "Checkout source code"
uses: "actions/checkout@v3"
with:
submodules: true

- name: "Generate artifacts (Cairo 0)"
run: |
cd ./starknet-core/test-data/contracts/cairo0
./generate_artifacts.sh
- name: "Generate artifacts (Cairo 1)"
run: |
cd ./starknet-core/test-data/contracts/cairo1
./generate_artifacts.sh
- name: "Generate artifacts (Cairo 2)"
run: |
cd ./starknet-core/test-data/contracts/cairo2
./generate_artifacts.sh
- name: "Check Git diffs"
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "Git diffs found. Make sure contract artifacts are up to date." >&2
exit 1
fi
Loading

0 comments on commit 11e04e1

Please sign in to comment.