.github/workflows/ci-test.yml
name: ci-test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- run: make test
- name: Start minikube
uses: medyagh/setup-minikube@latest
- run: ASSUME_MINIKUBE_IS_CONFIGURED=true make test-e2e