mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-31 16:05:00 +00:00

**Description** This PR adds a static-checker pipeline as part of our workflows **Notes for Reviewers** N/A **[Signed commits](../CONTRIBUTING.md#signing-off-on-commits-developer-certificate-of-origin)** - [x] Yes, I signed my commits. Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
70 lines
1.5 KiB
YAML
70 lines
1.5 KiB
YAML
name: static check
|
|
on: pull_request
|
|
|
|
jobs:
|
|
imports:
|
|
name: Imports
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: check
|
|
uses: danhunsaker/golang-github-actions@v1.3.0
|
|
with:
|
|
run: imports
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
errcheck:
|
|
name: Errcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: check
|
|
uses: danhunsaker/golang-github-actions@v1.3.0
|
|
with:
|
|
run: errcheck
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: check
|
|
uses: danhunsaker/golang-github-actions@v1.3.0
|
|
with:
|
|
run: lint
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
shadow:
|
|
name: Shadow
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: check
|
|
uses: danhunsaker/golang-github-actions@v1.3.0
|
|
with:
|
|
run: shadow
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
staticcheck:
|
|
name: StaticCheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: check
|
|
uses: danhunsaker/golang-github-actions@v1.3.0
|
|
with:
|
|
run: staticcheck
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
sec:
|
|
name: Sec
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: check
|
|
uses: danhunsaker/golang-github-actions@v1.3.0
|
|
with:
|
|
run: sec
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
flags: "-exclude=G104"
|