Skip to content

feat: add lp print cmd #44

feat: add lp print cmd

feat: add lp print cmd #44

Workflow file for this run

# yaml-language-server: $schema=https://json-schema.org/draft-07/schema#
name: Test
on:
push:
pull_request:
workflow_dispatch:
env:
GO_VERSION: "1.20"
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION}}
- name: Build
shell: bash
run: |
make build
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION}}
- name: Test
shell: bash
run: |
make ut
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
file: ./unittest-coverage.out
bench:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ env.GO_VERSION}}
- name: Build
shell: bash
run: |
make bench