mirror of
https://github.com/labstack/echo.git
synced 2024-11-30 08:46:41 +02:00
49 lines
998 B
YAML
49 lines
998 B
YAML
name: Run checks
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
env:
|
|
# run static analysis only with the latest Go version
|
|
LATEST_GO_VERSION: "1.20"
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Go ${{ matrix.go }}
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: ${{ env.LATEST_GO_VERSION }}
|
|
check-latest: true
|
|
|
|
- name: Run golint
|
|
run: |
|
|
go install golang.org/x/lint/golint@latest
|
|
golint -set_exit_status ./...
|
|
|
|
- name: Run staticcheck
|
|
run: |
|
|
go install honnef.co/go/tools/cmd/staticcheck@latest
|
|
staticcheck ./...
|
|
|
|
- name: Run govulncheck
|
|
run: |
|
|
go version
|
|
go install golang.org/x/vuln/cmd/govulncheck@latest
|
|
govulncheck ./...
|
|
|
|
|