Skip to content

test: check for license headers #80

test: check for license headers

test: check for license headers #80

Workflow file for this run

name: Client Generator
on: [push, pull_request]
permissions:
contents: read
jobs:
generator-build:
runs-on: ubuntu-24.04
strategy:
matrix:
go-version: [ '1.23' ]
defaults:
run:
working-directory: generator
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: |
generator/go.sum
- name: Display Go version
run: go version
- run: go fmt ./...
- run: go test ./...
- name: Detect Changes
run: git diff --exit-code