Skip to content

Commit

Permalink
nah linter
Browse files Browse the repository at this point in the history
  • Loading branch information
JolyBI3ll committed Dec 20, 2024
1 parent a079cf1 commit d2740a1
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,25 @@ on:

jobs:

lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23.1'
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- name: Run golangci-lint
run: golangci-lint run ./...
# lint:
# name: Lint
# runs-on: ubuntu-latest
# timeout-minutes: 3
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 1
# - name: Setup Go
# uses: actions/setup-go@v5
# with:
# go-version: '1.23.1'
# - name: Install golangci-lint
# run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
# - name: Run golangci-lint
# run: golangci-lint run ./...

build-test-and-push:
runs-on: ubuntu-latest
needs:
- lint
steps:
# 1. Checkout repository
- name: Checkout code
Expand Down

0 comments on commit d2740a1

Please sign in to comment.