Skip to content

style: tapestry skill description to third-person, imperative form #24

style: tapestry skill description to third-person, imperative form

style: tapestry skill description to third-person, imperative form #24

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Integration Test
run: go test -tags integration ./cmd/ -run TestIntegration -v