Skip to content

Update Makefile build-cli target #95

Update Makefile build-cli target

Update Makefile build-cli target #95

Workflow file for this run

name: 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:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Setup golang
uses: ./.github/actions/golang
- name: Run unit tests
run: make test-unit
- name: Save logs
if: always()
uses: ./.github/actions/save-logs