Inline mattermost-govet into the monorepo (#35869)

* inline mattermost-govet

* fix style issues

* simplify the openApiSync spec test

* README.md tweaks

* fix missing licenses

* simplify README.md

* trigger server-ci on tools/mattermost-govet/**

* Apply https://github.com/mattermost/mattermost-govet/commit/470cf78253f0aa85a4f4b5b50002682bf823e729

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
This commit is contained in:
Jesse Hallam
2026-04-01 13:24:22 +00:00
committed by GitHub
co-authored by Mattermost Build
parent eb8310a30c
commit 4d20645a5b
150 changed files with 5939 additions and 2 deletions
+1
View File
@@ -17,6 +17,7 @@ on:
- ".github/workflows/mmctl-test-template.yml"
- "!server/build/Dockerfile.buildenv"
- "!server/build/Dockerfile.buildenv-fips"
- "tools/mattermost-govet/**"
- "!server/**/*.md"
- "!server/NOTICE.txt"
- "!server/CHANGELOG.md"
+47
View File
@@ -0,0 +1,47 @@
name: Tools CI
on:
push:
branches:
- master
- release-*
pull_request:
paths:
- "tools/mattermost-govet/**"
- ".github/workflows/tools-ci.yml"
concurrency:
group: ${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow, github.ref) || github.run_id }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
check-style:
name: check-style (mattermost-govet)
runs-on: ubuntu-22.04
defaults:
run:
working-directory: tools/mattermost-govet
steps:
- name: Checkout mattermost project
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
with:
go-version-file: tools/mattermost-govet/go.mod
- name: Run check-style
run: make check-style
test:
name: Test (mattermost-govet)
runs-on: ubuntu-22.04
defaults:
run:
working-directory: tools/mattermost-govet
steps:
- name: Checkout mattermost project
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Go
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
with:
go-version-file: tools/mattermost-govet/go.mod
- name: Run tests
run: make test