mirror of
https://github.com/rancher/k3k.git
synced 2026-05-16 22:36:44 +00:00
102 lines
2.0 KiB
YAML
102 lines
2.0 KiB
YAML
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: Check go modules
|
|
run: |
|
|
go mod tidy
|
|
|
|
git --no-pager diff go.mod go.sum
|
|
test -z "$(git status --porcelain)"
|
|
|
|
- name: Install tools
|
|
run: |
|
|
go install github.com/onsi/ginkgo/v2/ginkgo
|
|
go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest
|
|
|
|
ENVTEST_BIN=$(setup-envtest use -p path)
|
|
sudo mkdir -p /usr/local/kubebuilder/bin
|
|
sudo cp $ENVTEST_BIN/* /usr/local/kubebuilder/bin
|
|
|
|
- name: Run tests
|
|
run: ginkgo -v -r --skip-file=tests
|
|
|
|
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: Check go modules
|
|
run: |
|
|
go mod tidy
|
|
|
|
git --no-pager diff go.mod go.sum
|
|
test -z "$(git status --porcelain)"
|
|
|
|
- name: Install Ginkgo
|
|
run: go install github.com/onsi/ginkgo/v2/ginkgo
|
|
|
|
- name: Build
|
|
run: |
|
|
./scripts/build
|
|
|
|
# add k3kcli to $PATH
|
|
echo "${{ github.workspace }}/bin" >> $GITHUB_PATH
|
|
|
|
- name: Check k3kcli
|
|
run: k3kcli -v
|
|
|
|
- name: Run tests
|
|
run: ginkgo -v ./tests
|
|
|
|
- name: Archive k3s logs
|
|
uses: actions/upload-artifact@v4
|
|
if: always()
|
|
with:
|
|
name: k3s-logs
|
|
path: /tmp/k3s.log
|