Skip to content

Move resolving ref to digest to manifest handler #2

Move resolving ref to digest to manifest handler

Move resolving ref to digest to manifest handler #2

Workflow file for this run

name: e2e
on:
pull_request:
paths:
- "**.go"
- "go.mod"
- "go.sum"
- "Dockerfile"
- "test/**"
- "charts/**"
jobs:
test:

Check failure on line 12 in .github/workflows/e2e.yaml

View workflow run for this annotation

GitHub Actions / e2e

Invalid workflow file

The workflow is not valid. .github/workflows/e2e.yaml (Line: 12, Col: 3): The workflow must contain at least one job with no dependencies.
needs: lint
runs-on: ubuntu-latest
strategy:
matrix:
cni: [iptables, iptables-ipv6, ipvs]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run e2e
run: make e2e CNI=${{ matrix.cni }}