Skip to content

refactor(skills): consolidate muxt_explore-from-*, trim every SKILL.md #363

refactor(skills): consolidate muxt_explore-from-*, trim every SKILL.md

refactor(skills): consolidate muxt_explore-from-*, trim every SKILL.md #363

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version-file: "go.mod"
cache: true
- name: Build
run: go build ./...
- name: Test
run: |
go install ./cmd/muxt
go test -race -shuffle=on ./...