Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Build
name: build
on:
push:
branches: [ 'main' ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: CodeQL
name: codeQL

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-depscheck.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Vendor Dependencies Check
name: vendor dependencies check
on:
push:
branches: [ 'main' ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-golangci-lint.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: GolangCI Lint
name: golangCI
on:
push:
branches: [ 'main' ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-govulncheck.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Go Vulnerability Check
name: go vulnerability check
on:
push:
branches: [ 'main' ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Tests
name: tests
on:
push:
branches: [ 'main' ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Release
name: release
on:
push:
tags: ['v*']
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ShellCheck
name: shellcheck
on:
push:
branches: [ 'main' ]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typos.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Typos
name: typos

# Spell checks every file in the repo with typos (config in .typos.toml). Complements the misspell
# linter in golangci-lint, which only sees Go files.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-actionlint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Workflow Action Lint
name: workflow action lint

# Lints .github/workflows/ with rhysd/actionlint (expression/context errors, shellcheck on run:
# blocks, action input validation). actionlint is pinned in .tools/go.mod (built by make) so the
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow-yamllint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Workflow YAML Lint
name: workflow YAML lint

# Lints the repo's YAML (workflows, configs) with yamllint; rules live in .yamllint.yml.
# yamllint is preinstalled on ubuntu-latest and auto-detects GitHub Actions, emitting
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# tctest

[![GitHub release](https://img.shields.io/github/v/release/katbyte/tctest?color=blueviolet)](https://github.com/katbyte/tctest/releases/latest)
[![Go Version](https://img.shields.io/github/go-mod/go-version/katbyte/tctest?color=00ADD8)](https://github.com/katbyte/tctest/blob/main/go.mod)
[![Go Version](https://img.shields.io/github/go-mod/go-version/katbyte/tctest?label=go&color=00ADD8)](https://github.com/katbyte/tctest/blob/main/go.mod)
[![License](https://img.shields.io/github/license/katbyte/tctest?color=blue)](https://github.com/katbyte/tctest/blob/main/LICENSE)
![build](https://github.com/katbyte/tctest/actions/workflows/build.yaml/badge.svg)
![test](https://github.com/katbyte/tctest/actions/workflows/pr-tests.yaml/badge.svg)
![lint](https://github.com/katbyte/tctest/actions/workflows/pr-golangci-lint.yaml/badge.svg)
![CodeQL](https://github.com/katbyte/tctest/actions/workflows/codeql-analysis.yml/badge.svg)
[![OpenSSF Scorecard](https://img.shields.io/ossf-scorecard/github.com/katbyte/tctest?label=openSSF)](https://scorecard.dev/viewer/?uri=github.com/katbyte/tctest)

A command-line utility to trigger builds in TeamCity to run provider acceptance tests. Given a PR number it can find the files modified, discover the tests to run, and generate a `TEST_PATTERN` automatically.

Expand Down
Loading