Skip to content

chore: simple warning to let the user know, they didn't deploy anything. #7547

chore: simple warning to let the user know, they didn't deploy anything.

chore: simple warning to let the user know, they didn't deploy anything. #7547

Workflow file for this run

name: Test Unit Tests
on:
pull_request:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "CODEOWNERS"
permissions:
contents: read
# Abort prior jobs in the same workflow / PR
concurrency:
group: unit-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Setup golang
uses: ./.github/actions/golang
- name: Run unit tests
run: make test-unit