Skip to content

[codex] 调整脚本日志颜色范围 #12

[codex] 调整脚本日志颜色范围

[codex] 调整脚本日志颜色范围 #12

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
tags-ignore:
- "v*"
pull_request:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run tests
run: make test
- name: Run go vet
run: make vet
- name: Run race tests
run: make test-race
- name: Run coverage
run: make cover
- name: Build CLI
run: make build
- name: Upload coverage profile
uses: actions/upload-artifact@v4
with:
name: coverage-profile
path: coverage.out