testing-and-ci — Terraformテスト testing-and-ci, neptune, community, Terraformテスト, ide skills, OpenTofu自動化, Github Actions CI, Goテストワークフロー, golangci-lint統合, Makefileパスフィルタ, Claude Code

v1.0.0

このスキルについて

インフラストラクチャとしてのコードエージェントに適しており、TerraformおよびOpenTofuのワークフローテストを自動化するためにGithub Actionsを使用する テストとCIは、TerraformとOpenTofuを使用して自動化テストと継続的インテグレーションを実現するプロセスです

機能

TerraformとOpenTofuの統合
Github ActionsのPull Request自動化
Goテストとフォーマット
golangci-lintの統合
MakefileとGoファイルのパスフィルタ

# Core Topics

devopsfactory-io devopsfactory-io
[3]
[0]
Updated: 3/16/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
29
Canonical Locale
en
Detected Body Locale
en

インフラストラクチャとしてのコードエージェントに適しており、TerraformおよびOpenTofuのワークフローテストを自動化するためにGithub Actionsを使用する テストとCIは、TerraformとOpenTofuを使用して自動化テストと継続的インテグレーションを実現するプロセスです

このスキルを使用する理由

エージェントにGoプロジェクトの自動テスト、フォーマット、ビルドを可能にし、Github Actionsを使用し、make test-allやmake check-fmtなどのコマンドを利用し、golangci-lintと統合して包括的なコード検証を行う

おすすめ

インフラストラクチャとしてのコードエージェントに適しており、TerraformおよびOpenTofuのワークフローテストを自動化するためにGithub Actionsを使用する

実現可能なユースケース for testing-and-ci

make test-allを使用してGoテストスイートを自動化する
make check-fmtを使用して一貫したコードフォーマットを強制する
golangci-lintを統合して高度なコードlintingと検証を行う

! セキュリティと制限

  • Github Actionsの設定が必要
  • Goプロジェクトのみに限定
  • linting機能を実現するためにgolangci-lintのインストールに依存

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is testing-and-ci?

インフラストラクチャとしてのコードエージェントに適しており、TerraformおよびOpenTofuのワークフローテストを自動化するためにGithub Actionsを使用する テストとCIは、TerraformとOpenTofuを使用して自動化テストと継続的インテグレーションを実現するプロセスです

How do I install testing-and-ci?

Run the command: npx killer-skills add devopsfactory-io/neptune. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for testing-and-ci?

Key use cases include: make test-allを使用してGoテストスイートを自動化する, make check-fmtを使用して一貫したコードフォーマットを強制する, golangci-lintを統合して高度なコードlintingと検証を行う.

Which IDEs are compatible with testing-and-ci?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for testing-and-ci?

Github Actionsの設定が必要. Goプロジェクトのみに限定. linting機能を実現するためにgolangci-lintのインストールに依存.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add devopsfactory-io/neptune. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use testing-and-ci immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

testing-and-ci

Install testing-and-ci, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Testing and CI

Commands

  • make test-all – Run all Go tests (go test ./...).
  • make check-fmt – Verify Go formatting (gofmt -s -l); fails if any file needs formatting.
  • make lint – Run golangci-lint (requires golangci-lint installed).
  • make build – Build the neptune binary.

CI Workflows

  • test.yml – On push to main/release-* and on PRs. Path filter for Go files and Makefile. Runs make test-all and make check-fmt.
  • lint.yml – On PRs. Path filter for Go and lint config. Runs golangci-lint.
  • labeler.yml – On pull_request. Runs actions/labeler with .github/labeler.yml (path and head-branch rules).
  • label-old-prs.yml – workflow_dispatch. Backfills labels: applies same rules as labeler to head branch and PR title (labeler has no branch context on manual run), then runs the labeler for path-based labels. Use state and limit inputs.
  • release.yml – On push of tags v*.*.*. Runs GoReleaser to create the GitHub Release and artifacts.

Adding Tests

  • Place *_test.go in the same package as the code (e.g. internal/config/loader_test.go).
  • Use table-driven tests for multiple cases; single-case tests are fine when appropriate.
  • Existing test packages: internal/config, internal/git, internal/run, internal/notifications/github. Add or extend tests when touching those areas or adding new packages.
  • Do not depend on live GitHub or GCS in unit tests; use mocks or stubs.

関連スキル

Looking for an alternative to testing-and-ci or another community skill for your workflow? Explore these related open-source skills.

すべて表示

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

カスタマイズ可能なウィジェットプラグインをprompts.chatのフィードシステム用に生成する

149.6k
0
AI

flags

Logo of vercel
vercel

React フレームワーク

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

Pythonにおけるテンソルと動的ニューラルネットワーク(強力なGPUアクセラレーション)

98.6k
0
開発者