This repository was archived by the owner on Mar 11, 2025. It is now read-only.
chore: fix jinja action #128
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The Licensed Work is (c) 2022 Sygma | |
| # SPDX-License-Identifier: LGPL-3.0-only | |
| on: [pull_request] | |
| name: Linter check | |
| env: | |
| GO111MODULE: on | |
| jobs: | |
| linter-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: 1.19 | |
| - uses: actions/checkout@v2 | |
| - name: Install linter | |
| run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin | |
| - name: Run linter | |
| run: golangci-lint run --timeout=10m |