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 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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>
52 lines
1023 B
YAML
52 lines
1023 B
YAML
name: e2e
|
|
|
|
on:
|
|
push:
|
|
branches: [ "*" ]
|
|
paths:
|
|
- '.github/workflows/e2e.yml'
|
|
- 'api/**'
|
|
- 'charts/kamaji/**'
|
|
- 'controllers/**'
|
|
- 'e2e/*'
|
|
- '.ko.yaml'
|
|
- 'go.*'
|
|
- 'main.go'
|
|
- 'Makefile'
|
|
- 'internal/**'
|
|
- 'cmd/**'
|
|
pull_request:
|
|
branches: [ "*" ]
|
|
paths:
|
|
- '.github/workflows/e2e.yml'
|
|
- '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@v5
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.22'
|
|
check-latest: true
|
|
- run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y golang-cfssl
|
|
sudo swapoff -a
|
|
sudo modprobe br_netfilter
|
|
- name: e2e testing
|
|
run: make e2e
|