github.com/cs3org/reva/v2@v2.27.7/.github/workflows/lint.yml (about)

     1  name: Lint
     2  on:
     3    pull_request:
     4      paths-ignore:
     5        - "go.mod"
     6        - "go.sum"
     7    push:
     8    workflow_dispatch:
     9  
    10  jobs:
    11    lint:
    12      runs-on: self-hosted
    13      steps:
    14        - name: Checkout
    15          uses: actions/checkout@v3.1.0
    16        - name: Setup Go environment
    17          uses: actions/setup-go@v4
    18          with:
    19            go-version-file: go.mod
    20            check-latest: true
    21        - name: Run linters
    22          run: make lint