Skip to content

Moving go steps in Dockerfile #6

Moving go steps in Dockerfile

Moving go steps in Dockerfile #6

Workflow file for this run

name: Code Analysis
on:
[workflow_dispatch, push]
jobs:
golangci-lint:
name: runner / golangci-lint
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
with:
golangci_lint_flags: "--enable-all --exclude-use-default=false"