Skip to content

Add e2e tests to check the CLI #1

Add e2e tests to check the CLI

Add e2e tests to check the CLI #1

Workflow file for this run

name: E2E Tests
on:
push:
pull_request:
jobs:
test:
name: "End-to-end Tests"
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '~1.19'
- name: Clone the code
uses: actions/checkout@v3
- name: Build Binary
run: |
make fioctl-linux-amd64
GOBIN=$(go env GOPATH)/bin
mv ./bin/fioctl $GOBIN/fioctl
- name: Run E2E tests
run: make test-e2e