Skip to content

update to latest version: v1.0.4 #2

update to latest version: v1.0.4

update to latest version: v1.0.4 #2

Workflow file for this run

name: unittest
on:
pull_request:
branches:
- "main"
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
# Set up python 3.9
- name: Prepare python env
uses: actions/setup-python@v4
with:
python-version: "3.9"
# Install pipenv
- name: Install pipenv
run: pip install pipenv
# Pack and publish Python SDK
- name: Exec py client unit test
working-directory: .
run: make -f ./tools/Makefile test