Skip to content
This repository has been archived by the owner on Aug 8, 2024. It is now read-only.

Bump github.com/CosmWasm/wasmd from 0.32.0 to 0.52.0 #509

Bump github.com/CosmWasm/wasmd from 0.32.0 to 0.52.0

Bump github.com/CosmWasm/wasmd from 0.32.0 to 0.52.0 #509

Workflow file for this run

name: Test Coverage
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
cov:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/[email protected]
- uses: actions/setup-go@v5
with:
go-version: 1.22 # The Go version to download (if necessary) and use.
- name: Get Coverage
run: |
go test ./... -cover -coverprofile coverage.out
go tool cover -func ./coverage.out