refactor(p/int256): changes to the int256 package implementation #146
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: run-integration-test | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| jobs: | |
| run-integration-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out gnoswap repo | |
| uses: actions/checkout@v4 | |
| - name: Check out gno | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: gnoswap-labs/gno | |
| ref: master | |
| path: ./gno | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: "1.24" | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Install gno | |
| run: | | |
| cd gno | |
| make install.gno | |
| - name: Run setup.py | |
| run: python3 setup.py --exclude-tests -w . | |
| - name: Run integration tests | |
| run: ./scripts/all-integration-tests.sh ./gno/gno.land/pkg/integration . --skip |