Skip to content

Commit

Permalink
Adjust workflow steps to run all required targets
Browse files Browse the repository at this point in the history
  • Loading branch information
christeredvartsen committed Dec 20, 2024
1 parent 071305d commit b062832
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,9 @@ jobs:
${{ steps.go-cache.outputs.gocache }}
${{ steps.go-cache.outputs.gomodcache }}
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- run: go test ./...
- run: helm lint --strict ./charts
- run: make staticcheck
- run: make vulncheck
- run: make test
- run: make helm-lint
- run: make check
- name: Check code format and run code generators
run: |
make fmt
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@ jobs:
${{ steps.go-cache.outputs.gocache }}
${{ steps.go-cache.outputs.gomodcache }}
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- run: go test ./...
- run: helm lint --strict ./charts
- run: make staticcheck
- run: make vulncheck
- run: make test
- run: make helm-lint
- run: make check
- name: Check code format and run code generators
run: |
make fmt
Expand Down

0 comments on commit b062832

Please sign in to comment.