mirror of
https://github.com/clastix/kamaji.git
synced 2026-02-14 18:10:03 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
name: e2e
|
|
|
|
on:
|
|
push:
|
|
branches: [ "*" ]
|
|
paths:
|
|
- '.github/workflows/e2e.yaml'
|
|
- 'api/**'
|
|
- 'charts/kamaji/**'
|
|
- 'controllers/**'
|
|
- 'e2e/*'
|
|
- '.ko.yaml'
|
|
- 'go.*'
|
|
- 'main.go'
|
|
- 'Makefile'
|
|
- 'internal/**'
|
|
- 'cmd/**'
|
|
pull_request:
|
|
branches: [ "*" ]
|
|
paths:
|
|
- '.github/workflows/e2e.yaml'
|
|
- 'api/**'
|
|
- 'charts/kamaji/**'
|
|
- 'controllers/**'
|
|
- 'e2e/*'
|
|
- '.ko.yaml'
|
|
- 'go.*'
|
|
- 'main.go'
|
|
- 'Makefile'
|
|
- 'internal/**'
|
|
- 'cmd/**'
|
|
|
|
jobs:
|
|
kind:
|
|
name: Kubernetes
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-go@v6
|
|
with:
|
|
go-version-file: go.mod
|
|
- run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y golang-cfssl
|
|
sudo swapoff -a
|
|
sudo modprobe br_netfilter
|
|
- name: install required Go tools
|
|
run: make kind ko helm ginkgo
|
|
- name: cleaning up go mod
|
|
run: go clean -modcache
|
|
- name: e2e testing
|
|
run: make e2e
|