Go-Back-Skeleton/.github/workflows/lint.yml
Gabriel Prando 42b391fe9b
Feat: Add GitHub Actions Workflow for CI/CD (#21)
Add GitHub Actions Workflow for CI/CD (#21)
2024-07-24 23:31:20 +02:00

18 lines
No EOL
337 B
YAML

on: [workflow_call]
defaults:
run:
shell: bash
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: golang ci lint
uses: golangci/golangci-lint-action@v6
continue-on-error: true
with:
version: latest
args: --timeout 10m