From f29a1f4831c94137e3a113da7b7c356842de27ec Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 10 Nov 2023 16:47:56 +0100 Subject: [PATCH] ci: add go license checker (#15) Signed-off-by: Harald Hoyer --- .github/workflows/license-go.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/license-go.yaml diff --git a/.github/workflows/license-go.yaml b/.github/workflows/license-go.yaml new file mode 100644 index 0000000..28d185a --- /dev/null +++ b/.github/workflows/license-go.yaml @@ -0,0 +1,11 @@ +name: License Check + +on: pull_request + +jobs: + license-check: + runs-on: ubuntu-latest + name: License Check + steps: + - uses: actions/checkout@v2 + - uses: haraldh/go-license-checker@v0.5.2 \ No newline at end of file