Skip to content

get secondary market in loop #15

get secondary market in loop

get secondary market in loop #15

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -coverprofile coverage.out ./...
- name: Update coverage report
uses: ncruces/go-coverage-report@main
with:
coverage-file: coverage.out
amend: true
chart: true
continue-on-error: true
- name: Mutating
uses: go-gremlins/gremlins-action@v1
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.56.2
continue-on-error: true