Skip to content

Update cpu profile

Update cpu profile #48

Workflow file for this run

---
name: Go
on:
pull_request:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.23"]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go
- name: Test
run: make test