Skip to content

feat: added wss futures client and implemted 'order.place', 'order.ca… #266

feat: added wss futures client and implemted 'order.place', 'order.ca…

feat: added wss futures client and implemted 'order.place', 'order.ca… #266

Workflow file for this run

name: Check
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
TyposCheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crate-ci/[email protected]
with:
config: ./typos.toml
UnitTest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: './v2/go.mod'
cache: true
cache-dependency-path: './v2/go.sum'
- name: Format
run: ./check.sh format
- name: Vet
run: ./check.sh vet
- name: UnitTest
run: ./check.sh unittest