A simple GM Halo2 circuit for testing #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static Analysis | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths-ignore: ['**/Dockerfile', '**/public/**', '**/.*ignore', '**/*.toml'] | |
push: | |
branches: [main, staging] | |
paths-ignore: ['**/Dockerfile', '**/public/**', '**/.*ignore', '**/*.toml'] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Attempt Submodule Update (ignore errors) | |
run: git submodule update --init --recursive || echo "Submodule update failed, attempting manual clone..." | |
- name: Manual Submodule Clone (if needed) | |
run: | | |
if [ ! -d "packages/probabilistic-encryption" ]; then | |
git clone --recurse-submodules https://github.com/crodriguezvega/probabilisticpubkey | |
cd packages/probabilistic-encryption | |
git checkout master | |
cd ../.. | |
fi | |
- name: Debug - Print Working Directory | |
run: pwd | |
- name: Debug - List Files in Current Directory | |
run: ls -al | |
- name: Debug - List Files in Parent Directory | |
run: ls -al .. | |
- name: Apply Patch Changes | |
run: git apply ../../submodules-changes.patch | |
- uses: actions/setup-python@v4 | |
- name: Install Rust toolchain 1.74 (with clippy and rustfmt) | |
run: rustup toolchain install nightly-2023-12-21 && rustup component add clippy --toolchain nightly-2023-12-21 && rustup component add rustfmt --toolchain nightly-2023-12-21 | |
- name: Run pre-commit hooks | |
uses: pre-commit/[email protected] | |
with: | |
extra_args: --all-files | |