Skip to content

feat(framework):update framework #1

feat(framework):update framework

feat(framework):update framework #1

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
# deploy:
# runs-on: ubuntu-20.04
# concurrency:
# group: ${{ github.workflow }}-${{ github.ref }}
# steps:
# - uses: actions/checkout@v2
# with:
# submodules: true # Fetch Hugo themes (true OR recursive)
# fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
# - run: mv README.md doc/index.md
# - name: Deploy Pages
# uses: peaceiris/actions-gh-pages@v3
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: ./doc
# enable_jekyll: true
build-example-kv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23.2
- name: Build
run: |
cd example/memory_kv/
go build