ci: fixes bot workflow and comment update #10212
Workflow file for this run
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: gnovm | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
main: | |
name: Run Main | |
uses: ./.github/workflows/main_template.yml | |
with: | |
modulepath: "gnovm" | |
# in pull requests, append -short so that the CI runs quickly. | |
tests-extra-args: ${{ github.event_name == 'pull_request' && '-short' || '' }} | |
secrets: | |
codecov-token: ${{ secrets.CODECOV_TOKEN }} | |
fmt: | |
name: Run Gno Fmt | |
uses: ./.github/workflows/gnofmt_template.yml | |
with: | |
path: "gnovm/stdlibs/..." | |
go-version: "1.22.x" |