Skip to content

Commit

Permalink
Linters in the separate wf (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
l0kix2 authored Apr 9, 2024
1 parent e90a1ee commit f29911b
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pr_lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Run linters

on:
pull_request:

jobs:
check:
name: Run checks
runs-on: ubuntu-latest

steps:
- name: checkout sources
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'

- name: Run linters
shell: bash
run: |
make lint
make lint-generated
File renamed without changes.
6 changes: 0 additions & 6 deletions .github/workflows/subflow_run_e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@ jobs:
with:
go-version-file: 'go.mod'

- name: Run linters
shell: bash
run: |
make lint
make lint-generated
- name: Set up Helm
uses: azure/setup-helm@v1
with:
Expand Down

0 comments on commit f29911b

Please sign in to comment.