Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
blampe committed Oct 11, 2024
1 parent 8240cd7 commit 4498a9a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ jobs:
- name: Build
run: make build
- name: Build PF
run: cd pf && make build
run: cd pkg/pf && make build
- name: Test
run: make test
- name: Test PF
run: cd pf && make test
run: cd pkg/pf && make test
- name: Test Dynamic
run: cd dynamic && make test
- name: Upload coverage reports to Codecov
Expand All @@ -74,9 +74,9 @@ jobs:
- name: Install golangci-lint
uses: golangci/golangci-lint-action@v4
with:
skip-cache: true
skip-pkg-cache: true
skip-build-cache: true
version: v1.60
skip-cache: true
skip-pkg-cache: true
skip-build-cache: true
version: v1.60
- name: Lint
run: make lint
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
go-version: 1.23.x
cache-dependency-path: |
**/go.sum
- run: make -C pf build.testproviders
- run: make -C pkg/pf build.testproviders
- name: Ensure Clean Repo
run: git diff-files --quiet
- name: Show Dirty Repo File Changes
Expand Down

0 comments on commit 4498a9a

Please sign in to comment.