feat: library upgrade + use offset instead of creating new array #174
This file contains hidden or 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: circuit profiling | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test: | |
| name: nargo info | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Nargo | |
| uses: noir-lang/noirup@v0.1.4 | |
| with: | |
| toolchain: 1.0.0-beta.18 | |
| - name: Run nargo info | |
| run: nargo info --workspace --silence-warnings | tee profiling_info.txt | |
| - name: Archive profiling artifacts | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: profiling_info | |
| path: | | |
| profiling_info.txt |