Skip to content

Update README.md

Update README.md #13

Workflow file for this run

name: Test Golang

Check failure on line 1 in .github/workflows/test-golang.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test-golang.yml

Invalid workflow file

`pulgjhl_request` is not a valid event name
on:
pulgjhl_request:
merge_group:
push:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# set ESM_DISABLE_CACHE=true (will be JSON parsed)
jobs:
gotest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/restore-golang
with:
go-version: '1.20'
- name: go test
run: cd golang/cosmos && go test -coverprofile=coverage.txt -covermode=atomic ./...
- uses: ./.github/actions/post-test
if: (success() || failure())
continue-on-error: true
timeout-minutes: 4
with:
codecov-token: ${{ secrets.CODECOV_TOKEN }}