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

Testing Code Owners #33

Merged
merged 11 commits into from
Dec 26, 2024
68 changes: 68 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: CI

# on:
# pull_request_review:
# types: [submitted]
# workflow_dispatch:

on:
pull_request:
branches:
- main
workflow_dispatch:

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_name != 'workflow_dispatch' }}
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

42 changes: 0 additions & 42 deletions .github/workflows/regression.yml

This file was deleted.

31 changes: 0 additions & 31 deletions .github/workflows/update-version.yml

This file was deleted.

2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20241226.140038.770437
20241226.144344.818531