Skip to content

Implement list command #24

Implement list command

Implement list command #24

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
env:
cache-version: "2024-04-05"
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
uses: actions/cache@v3
with:
path: bin/download
key: cache-tools-${{ env.cache-version }}-go-${{ hashFiles('go.mod') }}-${{ hashFiles('Makefile') }}
- name: Cache files
uses: actions/cache@v3
with:
path: cache
key: cache-files-${{ env.cache-version }}-go-${{ hashFiles('go.mod') }}-${{ hashFiles('Makefile') }}
- name: Setup tools
run: make setup
- name: Run code check
run: make check-generate
- name: Run lint
run: make lint
- name: Run environment
working-directory: e2e
run: |
make start
make install-test-pod
make install-policy-viewer
- name: Test
working-directory: e2e
run: make test