Skip to content

feat(nexus): gmp events metadata (#2189) #7531

feat(nexus): gmp events metadata (#2189)

feat(nexus): gmp events metadata (#2189) #7531

Workflow file for this run

name: Testing and coverage
on:
pull_request:
push:
branches:
- main
- releases/**
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Golang with cache
uses: magnetikonline/action-golang-cache@v4
with:
go-version: 1.23
- name: Run test and coverage
run: |
go test ./... -race -coverprofile=coverage.txt -covermode=atomic
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4-beta
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}