[NONEVM-4455] Block low gaslimit msg #361
Workflow file for this run
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: TON - Deployment module checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build-check: | |
| name: Build & Unit Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v5 | |
| - name: Install Nix | |
| uses: cachix/install-nix-action@02a151ada4993995686f9ed4f1be7cfbb229e56f # v31 | |
| with: | |
| nix_path: nixpkgs=channel:nixos-unstable | |
| - name: Build contracts | |
| run: nix develop .#contracts -c yarn && yarn build | |
| working-directory: contracts | |
| - name: Run build | |
| run: nix develop -c go build -v ./... | |
| working-directory: deployment | |
| - name: Run unit tests | |
| run: nix develop -c go test -v -count=1 -p=1 ./... | |
| working-directory: deployment |