Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 0 additions & 34 deletions .github/workflows/lint.yml

This file was deleted.

13 changes: 5 additions & 8 deletions .github/workflows/pr-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,18 @@ on:

jobs:
precommit:
name: Pre-commit Gate
name: Pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6

- uses: j178/prek-action@v2

lint-gate:
name: Lint Gate
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0

- name: setup Go
uses: actions/setup-go@v6
Expand All @@ -32,8 +30,7 @@ jobs:
uses: golangci/golangci-lint-action@v9
with:
version: latest
only-new-issues: false
args: ${{ github.event_name == 'pull_request' && '--new-from-rev=origin/main' || '' }}
only-new-issues: true

can-read-secret:
name: Can Read Secret
Expand All @@ -52,7 +49,7 @@ jobs:

build-cli:
name: Build CLI Binary on ${{ matrix.runner }}
needs: [precommit, lint-gate]
needs: [precommit, lint]
strategy:
matrix:
include:
Expand Down
18 changes: 0 additions & 18 deletions .github/workflows/pre-commit.yml

This file was deleted.

Loading