Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #39

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
* @Certora/Automation
61 changes: 0 additions & 61 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,61 +0,0 @@
name: CI

on:
pull_request_review:
types: [submitted]

jobs:
Regression:
if: (github.event.review.state == 'approved') && (github.event.pull_request.base.ref == 'main')
runs-on: ubuntu-latest

container:
image: public.ecr.aws/certora/cvt-image:2024.10.23-4499-c4f8ad4

env:
ETHSCAN_API_KEY: ${{ secrets.ETHSCAN_API_KEY }}
QUORUM_PATH: "."
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}

permissions:
id-token: write
contents: read

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Quorum Repo
run: pip3.11 install .

- name: Execute Regression Tests
run: |
pytest Quorum/tests --maxfail=1 --disable-warnings --tb=short
CheckProposal --config Quorum/execution.json


Update-Version:
if: (github.event.review.state == 'approved') && (github.event.pull_request.base.ref == 'main')
needs: Regression
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
actions: write

steps:
- uses: actions/checkout@v4

- name: Change version
run: python3 -c "from datetime import datetime; print(datetime.now().strftime('%Y%m%d.%H%M%S.%f'))" > version

- name: Configure Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "$GITHUB_ACTOR"

- name: Commit and push version change
run: |
git add .
git commit -m "Auto change version."
git push origin HEAD:$GITHUB_HEAD_REF -f
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,8 @@ Aave/
├── ground_truth.json
```

My changes are the best

In this example, each proposal address under the `checks/` directory contains diff files that highlight the differences between the local and fetched source codes, as well as global variable check results. The `modules/` directory contains the repositories relevant to the customer "Aave," and the `execution.json` and `ground_truth.json` files hold metadata and configuration details.

## License
Expand Down