Skip to content

update new github action #48

update new github action

update new github action #48

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: 1.22
- name: Build
run: go build
- name: Build Sample
run: cd sample/simple_market/ && go build