Skip to content

Refactor how opaque device configs are handled #29

Refactor how opaque device configs are handled

Refactor how opaque device configs are handled #29

Workflow file for this run

name: Run tests
on: [ push, pull_request ]
permissions:
contents: read
jobs:
e2e:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.23.1
- name: Checkout code
uses: actions/checkout@v3
- name: Build
run: make PREFIX=artifacts cmds
- name: install helm, kubectl, and kind
run: |
sudo snap install helm --classic
sudo snap install kubectl --classic
go install sigs.k8s.io/[email protected]
helm version
kubectl version
kind version
- name: Setup e2e
run: make setup-e2e
- name: run e2e test
run: make test-e2e
- name: teardown e2e test
run: make teardown-e2e