Skip to content

feat: add implementation on Market #68

feat: add implementation on Market

feat: add implementation on Market #68

Workflow file for this run

name: Verify
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
verify:
name: verify
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go command
uses: actions/setup-go@v4
with:
go-version: 'stable'
check-latest: true
- name: verify all
run: make verify
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true