Files
mattermost/.github/workflows/tools-ci.yml
T
Nuno Simões 3af36e0a49 ci: scope GitHub Actions workflows (#36890)
* Scope GitHub Actions workflow and job permissions

* Fix workflow permissions gaps from least-privilege scoping
2026-06-04 19:40:30 +02:00

55 lines
1.5 KiB
YAML

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' }}
permissions:
contents: read
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
with:
persist-credentials: false
- 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
with:
persist-credentials: false
- 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