Skip to content

Implement list command #17

Implement list command

Implement list command #17

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
env:
cache-version: 1
jobs:
test:
name: e2e
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Cache tools
id: cache-tools
uses: actions/cache@v3
with:
path: bin/download
key: cache-${{ env.cache-version }}-go-${{ hashFiles('go.mod') }}-${{ hashFiles('Makefile') }}
- name: Setup tools
if: steps.cache-tools.outputs.cache-hit != 'true'
run: make setup
- name: Run lint
run: make lint
- name: Run environment
run: make start
working-directory: e2e
- name: Install test pods
run: make install-test-pod
working-directory: e2e
- name: Install policy viewer
run: make install-policy-viewer
working-directory: e2e