Fix delete cli #350
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
args: --timeout=5m | |
version: v1.60 | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Validate | |
run: make validate | |
- name: Run unit tests | |
run: make test-unit | |
tests-e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Validate | |
run: make validate | |
- name: Install Ginkgo | |
run: go install github.com/onsi/ginkgo/v2/ginkgo | |
- name: Build and package | |
run: | | |
make build | |
make package | |
# add k3kcli to $PATH | |
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH | |
- name: Check k3kcli | |
run: k3kcli -v | |
- name: Run e2e tests | |
run: make test-e2e | |
- name: Archive k3s logs | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: k3s-logs | |
path: /tmp/k3s.log | |
- name: Archive k3k logs | |
uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: k3k-logs | |
path: /tmp/k3k.log |