Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Manual sync] Simplify GitHub Action workflows #720

Merged
merged 1 commit into from
Feb 16, 2024
Merged
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
13 changes: 4 additions & 9 deletions .github/workflows/kind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ on:
defaults:
run:
shell: bash
working-directory: config-policy-controller

jobs:
kind-tests:
Expand All @@ -33,15 +32,11 @@ jobs:
steps:
- name: Checkout Config Policy Controller
uses: actions/checkout@v4
with:
path: config-policy-controller
fetch-depth: 0 # Fetch all history for all tags and branches

- name: Set up Go
uses: actions/setup-go@v5
id: go
with:
go-version-file: config-policy-controller/go.mod
go-version-file: go.mod

- name: Verify modules
run: |
Expand Down Expand Up @@ -123,9 +118,9 @@ jobs:
with:
name: artifacts
path: |
config-policy-controller/coverage*.out
config-policy-controller/event.json
config-policy-controller/gosec.json
coverage*.out
event.json
gosec.json

- name: Debug
if: ${{ failure() }}
Expand Down
Loading